Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function checkAnniStart() {
  2. var items = me.getItems();
  3. print("Checking to see if there is an anni on this character.");
  4. for(var i = 0; i < items.length; i++)
  5. {
  6. if(items[i].code == "cm1" && items[i].quality == 7)
  7. {
  8. print("This character has an anni, joining mule game to drop it off and comming back.");
  9. getScript("starter.dbj").send(me.gamename + "/" + me.gamepassword);
  10. quit;
  11. }
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement