Signup Now
Results 1 to 3 of 3
  1. #1
    Free User Anulka's Avatar
    Join Date
    Jan 2014
    Posts
    54
    Reputation
    10
    Rep Power
    21

    Action - moveitems

    Hello! I would like to know how to move my equipment to the ground.

    I've got something like this:

    Code:
    wait(2000, 3000)
    moveitems('wooden shield', ground($posx, $posy, $posz), lhand)
    wait(2000, 3000)
    moveitems('leather helmet', ground($posx, $posy, $posz), head)
    wait(2000, 3000)
    moveitems('leather legs', ground($posx, $posy, $posz), legs)
    wait(2000, 3000)
    moveitems('leather armor', ground($posx, $posy, $posz), chest)
    wait(2000, 3000)
    moveitems('sabre', ground($posx, $posy, $posz), rhand)
    wait(2000, 3000)
    But it seems not to be working..Isn't moveitems working like that - movitems(item, destination, from)?

  2. #2
    Free User L!p3's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    52
    Reputation
    21
    Rep Power
    21
    You have forgotten the count.


    wait(2000, 3000)
    moveitems('wooden shield', ground($posx, $posy, $posz), 'lhand', 1)
    wait(2000, 3000)
    moveitems('leather helmet', ground($posx, $posy, $posz), 'head', 1)
    wait(2000, 3000)
    moveitems('leather legs', ground($posx, $posy, $posz), 'legs', 1)
    wait(2000, 3000)
    moveitems('leather armor', ground($posx, $posy, $posz), 'chest', 1)
    wait(2000, 3000)
    moveitems('sabre', ground($posx, $posy, $posz), 'rhand', 1)
    wait(2000, 3000)

  3. #3
    Free User Anulka's Avatar
    Join Date
    Jan 2014
    Posts
    54
    Reputation
    10
    Rep Power
    21
    Oh lol yeah..that was it..Thanks!

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •