Jump to content
  • 0

Cant give cart to super novice?


johnbond

Question


  • Group:  Members
  • Topic Count:  113
  • Topics Per Day:  0.03
  • Content Count:  457
  • Reputation:   11
  • Joined:  02/17/13
  • Last Seen:  

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.

 

 

 

 
Link to comment
Share on other sites

6 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2350
  • Joined:  10/28/11
  • Last Seen:  

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 ) {
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  354
  • Reputation:   110
  • Joined:  01/30/13
  • Last Seen:  

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 by FXFreitas
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  113
  • Topics Per Day:  0.03
  • Content Count:  457
  • Reputation:   11
  • Joined:  02/17/13
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  113
  • Topics Per Day:  0.03
  • Content Count:  457
  • Reputation:   11
  • Joined:  02/17/13
  • Last Seen:  

Fixed it. Thanks.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  39
  • Topics Per Day:  0.01
  • Content Count:  102
  • Reputation:   2
  • Joined:  07/01/13
  • Last Seen:  

Excuse me Johnbond, how did you fix it? cause i'm having the same problem.

 

Hope you can help me out.

 

Thanks.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  113
  • Topics Per Day:  0.03
  • Content Count:  457
  • Reputation:   11
  • Joined:  02/17/13
  • Last Seen:  

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!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...