johnbond Posted June 5, 2015 Group: Members Topic Count: 113 Topics Per Day: 0.03 Content Count: 457 Reputation: 11 Joined: 02/17/13 Last Seen: January 23, 2018 Share Posted June 5, 2015 I have this cart renter NPC. Here are the lines to give a cart to merchants and super novices: case 1: if((BaseClass == Job_Merchant || BaseJob == Job_SuperNovice || BaseJob == Job_Super_Baby || BaseJob == Job_Baby_Merchant || BaseJob == Job_Baby_Blacksmith || BaseJob == Job_Baby_Alchem || BaseJob == Job_Baby_Alchemist) && checkcart() == 0 && (getskilllv("MC_PUSHCART") > 0) ) { setcart; mes "[Breeder]"; mes "There you go, " + strcharinfo(0) + "!"; close; }else{ mes "[Breeder]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } The problem is it does not give the cart. It says "Please make sure you are the required job ...". Maybe the checker for the job is wrong? Or there is another skill name for the pushcart skill of supernovices other than "MC_PUSHCART"?? Other jobs work well, only the super novice and super baby have a problem. What I am doing wrong here? Thanks. Quote Link to comment Share on other sites More sharing options...
Emistry Posted June 15, 2015 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: 4 hours ago Share Posted June 15, 2015 if((BaseClass == Job_Merchant || BaseJob == Job_SuperNovice || BaseJob == Job_Super_Baby || BaseJob == Job_Baby_Merchant || BaseJob == Job_Baby_Blacksmith || BaseJob == Job_Baby_Alchem || BaseJob == Job_Baby_Alchemist) && checkcart() == 0 && (getskilllv("MC_PUSHCART") > 0) ) { just use if( checkcart() == 0 && getskilllv("MC_PUSHCART") > 0 ) { 1 Quote Link to comment Share on other sites More sharing options...
FXFreitas Posted June 5, 2015 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 354 Reputation: 110 Joined: 01/30/13 Last Seen: June 7, 2024 Share Posted June 5, 2015 (edited) I found that bug in Super novice some months ago, can't fix yet but that job can't take the cart, can't change to expanded supoer novice (with job master or oficial NPC), the NPCs no identify the "Super Novice" Job. Edited June 5, 2015 by FXFreitas Quote Link to comment Share on other sites More sharing options...
johnbond Posted June 6, 2015 Group: Members Topic Count: 113 Topics Per Day: 0.03 Content Count: 457 Reputation: 11 Joined: 02/17/13 Last Seen: January 23, 2018 Author Share Posted June 6, 2015 I found that bug in Super novice some months ago, can't fix yet but that job can't take the cart, can't change to expanded supoer novice (with job master or oficial NPC), the NPCs no identify the "Super Novice" Job. Yes maybe this is what is happening to me too. Anyone have a solution?? Thanks. Quote Link to comment Share on other sites More sharing options...
johnbond Posted June 8, 2015 Group: Members Topic Count: 113 Topics Per Day: 0.03 Content Count: 457 Reputation: 11 Joined: 02/17/13 Last Seen: January 23, 2018 Author Share Posted June 8, 2015 Fixed it. Thanks. Quote Link to comment Share on other sites More sharing options...
Strand Posted June 15, 2015 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 102 Reputation: 2 Joined: 07/01/13 Last Seen: May 23, 2021 Share Posted June 15, 2015 Excuse me Johnbond, how did you fix it? cause i'm having the same problem. Hope you can help me out. Thanks. Quote Link to comment Share on other sites More sharing options...
johnbond Posted June 15, 2015 Group: Members Topic Count: 113 Topics Per Day: 0.03 Content Count: 457 Reputation: 11 Joined: 02/17/13 Last Seen: January 23, 2018 Author Share Posted June 15, 2015 if((BaseClass == Job_Merchant || BaseJob == Job_SuperNovice || BaseJob == Job_Super_Baby || BaseJob == Job_Baby_Merchant || BaseJob == Job_Baby_Blacksmith || BaseJob == Job_Baby_Alchem || BaseJob == Job_Baby_Alchemist) && checkcart() == 0 && (getskilllv("MC_PUSHCART") > 0) ) { just use if( checkcart() == 0 && getskilllv("MC_PUSHCART") > 0 ) { Yes Mr. Emistry helped me hehe. Thanks! Quote Link to comment Share on other sites More sharing options...
Question
johnbond
I have this cart renter NPC.
Here are the lines to give a cart to merchants and super novices:
The problem is it does not give the cart. It says "Please make sure you are the required job ...".
Maybe the checker for the job is wrong? Or there is another skill name for the pushcart skill of supernovices other than "MC_PUSHCART"??
Other jobs work well, only the super novice and super baby have a problem.
What I am doing wrong here?
Thanks.
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.