yuhsing

Untitled

Apr 17th, 2013
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1.  
  2. prontera,155,181,5 script Sample 757,{
  3. mes "Select a map.";
  4. switch( select( "PVP Solo","normal","Guild PK" ) ){
  5. Case 1:
  6. if( getmapusers("mapname") > 1 ){
  7. mes "Full";
  8. }else{
  9. warp "mapname",x,y;
  10. }
  11. break;
  12. Case 2:
  13. warp "mapname",x,y;
  14. break;
  15. Case 3:
  16. if( !getcharid(2) ){
  17. mes "Need a guild";
  18. }else{
  19. warp "mapname",x,y;
  20. }
  21. break;
  22. }
  23. close;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment