Jump to content
  • 0

Request Custom Job Changer


Yasunari Ishibashi

Question


  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  157
  • Reputation:   2
  • Joined:  01/06/12
  • Last Seen:  

NPC's function is to be a job change 1npc = 1 job, at once max lvup & joblvup

example:

NPC A

Ontouch:

atcommand "@ job 4077" strcharinfo + (0) + "";

atcommand "@ lvup 999" + strcharinfo (0) + "";

atcommand "@ joblvup 999" + strcharinfo (0) + "";

}

NPC B

Ontouch:

atcommand "@ job 4060" strcharinfo + (0) + "";

atcommand "@ lvup 999" + strcharinfo (0) + "";

atcommand "@ joblvup 999" + strcharinfo (0) + "";

}

etc.

if anyone can help make the script?

Make an example script just let me try to change her job.

Edited by Yasunari Ishibashi
Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  98
  • Topics Per Day:  0.02
  • Content Count:  299
  • Reputation:   5
  • Joined:  04/05/12
  • Last Seen:  

please be more specific in your request

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  157
  • Reputation:   2
  • Joined:  01/06/12
  • Last Seen:  

The script function is to change a particular job, 1 job = 1 npc

with a single touch direct npc job change.

Edited by Yasunari Ishibashi
Link to comment
Share on other sites


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

try this ?

prontera,155,181,5 script Sample 757,5,5,{
OnTouch:
if( Class == 0 ){
jobchange 4060;
set BaseLevel,99;
set JobLevel,70;
resetskill;
resetstatus;
}
end;
}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  157
  • Reputation:   2
  • Joined:  01/06/12
  • Last Seen:  

how the job minstrels and wanderer, when used in one an NPC?

bump...

if( Class == 0 | Sex == 0 ){

jobchange 4075;

else

jobchange 4076;

set BaseLevel,99;

set JobLevel,70;

resetskill;

resetstatus;

}

end;

}

whether right script like the above?

Link to comment
Share on other sites


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

try this

jobchange ( !Sex )?4075:4076;

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