Jump to content

If this is posible!!!


Riu

Recommended Posts

I need not simple script and I dont even know if this is posible. I play on server where is delay enchant, it means that you can encahnt each + by each 6second. I need a script. Make it like: weapon : Lance , and each 6 second enchant weapon B. I would then only press RUN. and it would enchant my spear. I know how to change scripts but dont know how to create, so if you make me some.... I can then change weapons in script and enchant I want.. [dunno if this is possible] thx vm.

Link to comment
Share on other sites

just record your action ...

 

1. double click your scroll

2. choose your weapon

 

after that you stop the recording and put the recorded stuff in here:

 

LABEL(ENCHANT)

<---- here goes your recording

DELAY(6000)
CALL(ENCHANT)

 

pretty simple huh?

 

EDIT:

btw this is not the help forum!

Link to comment
Share on other sites

I don't kinda get it... Can you make me just simple script and I just download it....

lol.. dont be so lazy guys.. record a simple enchanthing action is pretty simple but i dont know if it would work as u want

Link to comment
Share on other sites

  • 1 month later...

just record your action ...

 

1. double click your scroll

2. choose your weapon

 

after that you stop the recording and put the recorded stuff in here:

 

LABEL(ENCHANT)

<---- here goes your recording

DELAY(6000)
CALL(ENCHANT)

 

pretty simple huh?

 

EDIT:

btw this is not the help forum!

clever except for the fact walker can't enchant by script. Fail.

 

Here's how you do an enchant script.

 

Catch your ItemListPacket($1B). You may request one by RequestItemList($0F)

Get all your enchant scroll object IDs and the items you want to enchant's object IDs

 

Once you have the object IDs, client sends UseItem($14). UseItem works by object ID not item ID. So you UseItem your first enchant scroll

You can either wait a delay(bad) or wait for the "Select item to enchant" system message(good). SystemMessage is $64, and "Select Item to Enchant" is sysmsg ID $12F

 

Then, send RequestEnchantItem($58). This works only by object ID too. This time, use the ObjectID of the first item you want to enchant 

 

Finally, there are four possible systemmessage answers. sysmsg ID $3E and $3F are a success, $40 and $41 are a failure

 

then you loop over again. No need to request the item list again.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...