Guest User

Untitled

a guest
Apr 23rd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.49 KB | None | 0 0
  1. def steedcomposer():
  2.     global canCompose
  3.     listSteeds = []
  4.     for Item in Player.Inventory.Values:
  5.         if Item.ItemType == 300000:
  6.             listSteeds.append(Item.UID)
  7.     if len(listSteeds)>=3:
  8.         ToServer.ComposeSaddle(False, listSteeds[0], listSteeds[1])
  9.         Tools.Sleep(1000)
  10.         ToServer.ComposeSaddle(False, listSteeds[0], listSteeds[2])
  11.         Tools.Sleep(1000)
  12.     else:
  13.         canCompose = False
  14.  
  15. canCompose = True
  16. while canCompose:
  17.     steedcomposer()
Add Comment
Please, Sign In to add comment