' help plz!!!

Ask for help

Moderators: Murderator+, Murderator

Post Reply
ghostrike
Posts: 2
Joined: 2004-10-05 03:42:58

' help plz!!!

Post by ghostrike »

First, Sorry for my bad english.

Today i tried to creat a small macro for tailoring. I do this:

sub tailor3()
VAR cloth=0x40011340
UO.WaitMenu('Cloth','Misc.','Misc.','Body sash d intelligence')
UO.UseType(0x0f9d)
uo.waittargetobject(cloth)
wait(7000)
tailor1()
end sub

in the line UO.WaitMenu('Cloth','Misc.','Misc.','Body sash d intelligence')
I need to add and ' int he word. (I speak french and i play on a french server)

I want to create that line but the ' make an error...
UO.WaitMenu('Cloth','Misc.','Misc.','Body sash d'intelligence')

'Body sash d'intelligence' d'intelligence

Plz help me.
Sfagnum
Expert!
Posts: 1284
Joined: 2004-07-04 00:14:58
Contact:

Re: ' help plz!!!

Post by Sfagnum »

try this

Code: Select all

UO.WaitMenu("Cloth","Misc.","Misc.","Body sash d'intelligence")
ghostrike
Posts: 2
Joined: 2004-10-05 03:42:58

dont work

Post by ghostrike »

That not work...
AlexeyVorotnikov
Junior Expert
Posts: 138
Joined: 2004-09-18 15:12:06

Post by AlexeyVorotnikov »

Try shorter variant

Code: Select all

UO.WaitMenu("Cloth","Misc.","Misc.","Body sash")
Post Reply