Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 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 each(var item in items) {
  5. if(item.code == "cm1" && item.quality == 7) {
  6. var _anniOn = true;
  7. if(_anniOn) {
  8. print("Character has an anni, dropping in mule game");
  9. delay(5000);
  10. getScript("starter.dbj").send(me.gamename + "/" + me.gamepassword);
  11. quit();
  12. }
  13. }
  14. else {
  15. item++;
  16. }
  17. }
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement