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.
' help plz!!!
Moderators: Murderator+, Murderator
Re: ' help plz!!!
try this
Code: Select all
UO.WaitMenu("Cloth","Misc.","Misc.","Body sash d'intelligence")
-
- Junior Expert
- Posts: 138
- Joined: 2004-09-18 15:12:06
Try shorter variant
Code: Select all
UO.WaitMenu("Cloth","Misc.","Misc.","Body sash")