Advertisement
Guest User

Untitled

a guest
Oct 1st, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. prontera,150,150,0 script Trainer 100,{
  2. if ( JobLevel > 9 || BaseLevel > 1 ) {
  3. mes .npc$;
  4. mes "You are not a newbie";
  5. close;
  6. }
  7. mes .npc$;
  8. mes "Hello " + strcharinfo( 0 ) + ", What can i do for you?";
  9. next;
  10. if ( select( "I want to go to " + .training_map$ + " to train:Nothing" ) - 1 ) close;
  11. mes .npc$;
  12. mes "Good luck!";
  13. close2;
  14. warp .training_map$, 0, 0;
  15. end;
  16. OnKillMob:
  17. OnPCJobLvUpEvent:
  18. if ( JobLevel == 7 && strcharinfo( 3 ) == .training_map$ ) {
  19. warp "prontera", 156, 191;
  20. message strcharinfo( 0 ),"Congratulations!";
  21. }
  22. end;
  23. OnInit:
  24. .training_map$ = "new_1-1";
  25. .npc$ = "[ " + strnpcinfo( 1 ) + " ]";
  26. end;
  27. }
  28. new_1-1,0,0,0,0 monster "Poring" 1002,200,0,0,"Trainer::OnKillMob"
  29. new_1-1,0,0,0,0 monster "Fabre" 1007,200,0,0,"Trainer::OnKillMob"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement