PapaZola Posted May 16, 2014 Group: Members Topic Count: 318 Topics Per Day: 0.07 Content Count: 925 Reputation: 33 Joined: 12/05/11 Last Seen: September 20, 2023 Share Posted May 16, 2014 hello its posibble to make reward npc following job example if base job Lord Knight will receive Skull #7420 job Paladin will receive Valkyrie Shield #2115 Job High Wizard will receive Lich Bond Wand #1624 Quote Link to comment Share on other sites More sharing options...
Emistry Posted May 17, 2014 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted May 17, 2014 if( Class == Job_Lord_Knight ) getitem <item1>,<amount1>; else if( Class == Job_Paladin ) getitem <item2>,<amount2>; else if( Class == Job_High_Wizard ) getitem <item3>,<amount3>; Quote Link to comment Share on other sites More sharing options...
0 Psy Ops Posted June 12, 2019 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 70 Reputation: 0 Joined: 06/19/18 Last Seen: January 24, 2023 Share Posted June 12, 2019 How to set it as it is only the first one who reaches the job gets the item? Quote Link to comment Share on other sites More sharing options...
PapaZola Posted May 17, 2014 Group: Members Topic Count: 318 Topics Per Day: 0.07 Content Count: 925 Reputation: 33 Joined: 12/05/11 Last Seen: September 20, 2023 Author Share Posted May 17, 2014 how to make this npc only will give 1 times only for 1 item so if they make new character this npc wont give anymore Quote Link to comment Share on other sites More sharing options...
sandbox Posted May 19, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: Friday at 12:25 PM Share Posted May 19, 2014 if(#reward) end; if( Class == Job_Lord_Knight) getitem 7420,1; else if( Class == Job_Paladin ) getitem 2115,1; else if( Class == Job_High_Wizard ) getitem 1624,1; #reward++; Quote Link to comment Share on other sites More sharing options...
PapaZola Posted May 19, 2014 Group: Members Topic Count: 318 Topics Per Day: 0.07 Content Count: 925 Reputation: 33 Joined: 12/05/11 Last Seen: September 20, 2023 Author Share Posted May 19, 2014 (edited) so will be like this sandbox and emistry? prontera,150,150,4 script Gift 855,{ if(#reward) end; if( Class == Job_Lord_Knight) getitem 7420,1; else if( Class == Job_Paladin ) getitem 2115,1; else if( Class == Job_High_Wizard ) getitem 1624,1; #reward++; close; OnInit: waitingroom "Freebies",0; end; } Edited May 20, 2014 by PapaZola Quote Link to comment Share on other sites More sharing options...
sandbox Posted May 20, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: Friday at 12:25 PM Share Posted May 20, 2014 Pretty much, you should try it Quote Link to comment Share on other sites More sharing options...
Question
PapaZola
hello its posibble to make reward npc following job
example if base
job Lord Knight will receive Skull #7420
job Paladin will receive Valkyrie Shield #2115
Job High Wizard will receive Lich Bond Wand #1624
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.