Jump to content
  • 0

Set Zeny & Level


Yonko

Question


  • Group:  Members
  • Topic Count:  166
  • Topics Per Day:  0.04
  • Content Count:  789
  • Reputation:   50
  • Joined:  04/16/12
  • Last Seen:  

requesting for scripts which is likely to be like this

A NPC w/c can enter a player with following conditions

player consist of 100 zeny only
Level 1 & Novice thanks!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  10
  • Reputation:   2
  • Joined:  02/07/13
  • Last Seen:  

Something like this?

 

prontera,155,61,3    script    Request001    745,{
    
    set .npczeny, 100;
    set .npcname$, "[ ^FF0000Request001^000000 ]";
    
    mes .npcname$;
    if ( (Zeny == .npczeny) && (BaseLevel == 1) && (Class == Novice) ) {
            mes "You have successfully completed all the requirements.";
            close;
    }
    else {
        mes "You're missing one of the requirements.";
        mes "^FF0000* Base Level: 1";
        mes "* Zeny: 100";
        mes "* Job: Novice^000000";
        close;
    }

}

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  166
  • Topics Per Day:  0.04
  • Content Count:  789
  • Reputation:   50
  • Joined:  04/16/12
  • Last Seen:  

Something like this?

 

prontera,155,61,3    script    Request001    745,{
    
    set .npczeny, 100;
    set .npcname$, "[ ^FF0000Request001^000000 ]";
    
    mes .npcname$;
    if ( (Zeny == .npczeny) && (BaseLevel == 1) && (Class == Novice) ) {
            mes "You have successfully completed all the requirements.";
            close;
    }
    else {
        mes "You're missing one of the requirements.";
        mes "^FF0000* Base Level: 1";
        mes "* Zeny: 100";
        mes "* Job: Novice^000000";
        close;
    }

}

Thanks dude =))

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...