Jump to content
  • 0

Requesting Special Job Changer


Lordamax

Question


  • Group:  Members
  • Topic Count:  71
  • Topics Per Day:  0.02
  • Content Count:  328
  • Reputation:   13
  • Joined:  11/27/11
  • Last Seen:  

example i am high wizard and i want to be a champion. i will go to that npc and pay that npc 3 tcg and then my high wizard will be a champion. tnx for the advance help :)

Link to comment
Share on other sites

12 answers to this question

Recommended Posts


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

Ouch ~ sry..there is a little typo at the SetArray there, and several bug >.<

try this...

prontera,155,181,5 script Sample 718,{
if( countitem( 7227 ) < 3 || JobLevel < 70 || BaseLevel < 99 ){
mes "You required 3 TCG Card , 99 Base Level and 70 JobLevel to Switch your Job Class.";
}else{
setarray .JobLists[0],4008,4009,4010,4011,4012,4013,4015,4016,4017,4018,4019,( Sex )?"4020":"4021";
for( set .@i,0; .@i < getarraysize( .JobLists ); set .@i,.@i + 1 ){
 set .@Menu$,.@Menu$ + (( Class != .JobLists[.@i] )?jobname( .JobLists[.@i] ):"")+":";
 }
set .@i,select( .@Menu$ ) - 1;
jobchange .JobLists[.@i];
delitem 7227,3;
resetskill;
set JobLevel,70;
set SkillPoint,130;
mes "You have changed Job into "+jobname( Class );
}
close;
}

if the Skill Points amount is incorrect..then modify here

set SkillPoint,130;    // Novice 10 + First Class 50 + Trans 70  = 130 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  257
  • Reputation:   253
  • Joined:  11/29/11
  • Last Seen:  

So you basically want an NPC that will turn any class into any other class? Or do you wish to restrict it?

Link to comment
Share on other sites


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

You can try this ~

prontera,155,181,5 script Sample 718,{
if( countitem( 7227 ) < 3 ){
mes "You required 3 TCG Card to Switch your Job Class.";
}else{
setarray .Jobists[0],4008,4009,4010,4011,4012,4013,4015,4016,4017,4018,4019,( Sex )?"4020":"4021";
for( set .@i,0; .@i < getarraysize( .JobLists ); set .@i,.@i + 1 ){
 set .@Menu$,.@Menu$ + jobname( .JobLists[.@i] )+":";
 }
set .@i,select( .@Menu$ ) - 1;
jobchange .@Menu$[.@i];
delitem 7227,3;
mes "You have changed Job into "+jobname( Class );
}
close;
}
Edited by Emistry
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  71
  • Topics Per Day:  0.02
  • Content Count:  328
  • Reputation:   13
  • Joined:  11/27/11
  • Last Seen:  

Thanks for sharing the scfript but it is msg is only blank when i have 3 tcg!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.00
  • Content Count:  56
  • Reputation:   8
  • Joined:  11/10/11
  • Last Seen:  

is this safe? like the skill points and status points will not be abused or something?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  71
  • Topics Per Day:  0.02
  • Content Count:  328
  • Reputation:   13
  • Joined:  11/27/11
  • Last Seen:  

doesn't work but thanks :)

Link to comment
Share on other sites


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

doesn't work but thanks :)

Pardon ?? :) ? i didnt saw any stuffs related with "Not Working" here ? it work just fine in my test server...

if it didnt work...then please be specify !! nobody are mind reader here.... :D

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  71
  • Topics Per Day:  0.02
  • Content Count:  328
  • Reputation:   13
  • Joined:  11/27/11
  • Last Seen:  

i'm sorry hahahaha it works i'm sorry about the last post :)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  138
  • Topics Per Day:  0.03
  • Content Count:  835
  • Reputation:   25
  • Joined:  11/22/11
  • Last Seen:  

what is tcg? where can get? why now day alot ppl talk about tcg? XD! very curious sorry.

Reply 6/11/11 (11.39pm)

ic~ so it's a card. the card are using for? nothing need us think?

Edited by manabeast
Link to comment
Share on other sites


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

what is tcg? where can get?

TCG = Trading Card Game ( ItemID # 7227 )

How to get it ? it depend on how your setting to decide how to get it la ==''

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.00
  • Content Count:  626
  • Reputation:   188
  • Joined:  11/19/11
  • Last Seen:  

if the Skill Points amount is incorrect..then modify here

set SkillPoint,130;	// Novice 10 + First Class 50 + Trans 70  = 130 

Nothing serious, but wouldn't that be originally 127 Skill Points, since you're starting with Job Level 1 so you're missing one each :I.

Novice = 9 Skill Points

First Class = 49 Skill Points

Second Class = 69 Skill Points

=======

127 Skill Points for me ^^

Regards,

Chris

Link to comment
Share on other sites


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

Nothing serious, but wouldn't that be originally 127 Skill Points, since you're starting with Job Level 1 so you're missing one each :I.

Novice = 9 Skill Points

First Class = 49 Skill Points

Second Class = 69 Skill Points

Haha..thank for pointing out that ~

i not really sure on this "Calculation" xD

my math suck...>.<

and thx for 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...