woe_warper.txt 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //Custom WOE warper 1.1 [Lupus]
  2. //you can get to Novice Castles, too
  3. n_castle.gat,102,107,5 script Vimta 757,{
  4. mes "[Vimta]";
  5. mes "Hello, "+ strcharinfo(0) +"! What would you like?";
  6. next;
  7. menu "Warp me to Prontera",-,"Cancel",LEnd;
  8. warp "prontera.gat",155,177+rand(5);
  9. close;
  10. LEnd:
  11. mes "[Vimta]";
  12. mes "Ok. I'll wait here.";
  13. close;
  14. }
  15. prontera.gat,130,217,5 script Vimta 757,{
  16. mes "[Vimta]";
  17. mes "Hello there! I'm a WOE representative, Vimta.";
  18. if (getcharid(2) < 1000 ) mes "You are not a guild member, "+ strcharinfo(0) +"? Naff off for now.";
  19. if (getcharid(2) < 1000 ) close;
  20. if (agitcheck(0) == 0) mes "When WOE is off I can warp you to Novice Castles only:";
  21. if (agitcheck(0) != 0) mes "I can warp you to any Castle:";
  22. next;
  23. if (agitcheck(0) == 0) menu "Novice Castles",novice_cas,"Cancel",-;
  24. if (agitcheck(0) != 0) menu "Prontera Castles",prtg_cas,"Payon Castles",payg_cas,"Geffen Castles",gefg_cas,"Aldebaran Castles",aldeg_cas,"Novice Castles",novice_cas,"Cancel",-;
  25. mes "[Vimta]";
  26. mes "Don't think too long, War of Emperium is such a cool thing.";
  27. close;
  28. prtg_cas:
  29. warp "prt_gld.gat", 159, 38; close;
  30. payg_cas:
  31. warp "pay_gld.gat", 202, 173; close;
  32. gefg_cas:
  33. warp "gef_fild13.gat", 270, 225; close;
  34. aldeg_cas:
  35. warp "alde_gld.gat", 186, 157; close;
  36. novice_cas:
  37. warp "n_castle.gat", 102, 103+rand(5); close;
  38. }