Advertisement
Guest User

Untitled

a guest
Jun 1st, 2017
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. prontera,156,180,5 script dsfasfs 89,{
  2.  
  3. while(1)
  4. {
  5. .@menu$ = "one"+ .i +":two"+ .i +":three"+ .i +":four"+ .i;
  6. switch(select(.@menu$)) {
  7. case 1: .i += 1; dispbottom ".i"+ .i; break;
  8. case 2: .i += 2; dispbottom ".i"+ .i; break;
  9. case 3: .i += 3; dispbottom ".i"+ .i; break;
  10. case 4: .i += 4; dispbottom ".i"+ .i; break;
  11. }
  12. }
  13.  
  14. end;
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement