yuhsing

Untitled

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