Jump to content
  • 0

filtering doram


Leic

Question


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.01
  • Content Count:  48
  • Reputation:   0
  • Joined:  02/27/18
  • Last Seen:  

is there a way of filtering doram class?

 

ex. if doram = sorry your a summoner, only humans can do this... if novice(human) then script will continue...

 

it's probably something like the level script...

 

 if (BaseLevel < 99) {
        mes "[Event Manager]";
        mes "Sorry, Only a level 99 can do this";
        close;
    }

else {

<the script>

} 

 

Edited by Leic
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

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

if (BaseLevel < 99){

}
else if (Class == JOB_SUMMONER) {
	// mes "Summoner cant use";    
}
else {

}

 

  • Upvote 1
Link to comment
Share on other sites

  • 0

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

Wrong section. Moved to "Scripting Support".

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.01
  • Content Count:  48
  • Reputation:   0
  • Joined:  02/27/18
  • Last Seen:  

sorry for the wrong section. where can i find the JOB_ databases? i will make multiple conditions, however, i cannot find the JOB_ database :(

 

nvm i got it.

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