Guest User

Untitled

a guest
Apr 1st, 2012
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. SCRIPT_NAME = "spell_cast";
  2. void run(){
  3. if(argument == null || argument.equals("")) return;
  4. String[] c = argument.split(" ");
  5. if(c.length < 2)
  6. clientGUI.doCommand("/PartyTarget" + Integer.parseInt(c[c.length-1]));
  7. for(int i = 1; i< c.length -1;++i)
  8. c[0] += " " + c[i];
  9. clientGUI.doCommand(c[0] + " @partyTarget");
  10. }
Advertisement
Add Comment
Please, Sign In to add comment