Engrave items name

smoochy boys on tour

budyniowski

Dedicated Member
Dedicated Member
Dec 16, 2007
149
0
63
Warsaw, Poland
There is a command to engrave accesory names? I know - i can do i via sql commands but character must be offline ;/ There is a way to named accesory weared by ON-line char?

Thanks

Here is basic version of my script:
[@main]
#IF
#SAY
<item num/@@input1>

[@@input1]
#IF
#SAY
<item name/@@input2>
#ACT
Mov D0 %INPUTSTR

[@@input2]
#IF
#ACT
Mov A0 %INPUTSTR

#SAY
Przsze cie bardzo misiu korololowy...
#ACT
FormatStr "FLD_CHARACTER='%s' AND FLD_TYPE='%s'" %USERNAME %D0
mov A6 %A9
FormatStr "FLD_NAMEPREFIX='%s'" %A0
UPDATEVALUESQL "TBL_ITEM" %A6 %A9
 

idaBigA

Holley Mir 3!!
VIP
Oct 28, 2003
1,966
110
310
Stoke, UK
Code:
   HLSCRIPTCMD ITEMWRITENAME %D0 %A0

Where %D0 = The Item Location (0 to 9)
And %A0 = The Text you want... Just 1 comment, this is always in capitals (or at least it is on Mine)
 
Upvote 0