
Originally Posted by
karemsame
i know i edit every Thing , and open the and USe The Scroll , But Nothing Happen
Hey there, when you use the scroll, did it teleports you back to town?, if it does, means the New SP didn't work for you, in which case it returns some errors due to condition placed in the SP, one of the way to check it is to run the SP directly from Query window, like this:
Code:
EXEC [_ADD_GM_GEAR] 'yourchar', 'LIGHT', <degree>, <plus>
(You can change the LIGHT to HEAVY, or CLOTHES)
The SP will spam your SQL output window, see if it stops somewhere. This is the example of successful output (see the red marks):

Good luck ;)

Originally Posted by
blacksheep25
In the AddLogItem procedure
Green = Degree Item
Red = Item Plus
Thank you :)) +1

Originally Posted by
B1QB0SS
stop releasing not working things !
It works fine, you gotta understand how it works so you can trace if it doesn't work for you
return scroll trigger (client side, TypeID3 3 TypeID4 3) -> calls _AddLogItem SP -> calls _ADD_GM_GEAR SP
so, if your char scrolled back, scroll gone, (successful return scroll), and you didn't get any items, means the SP didn't work for you, like I mentioned in previous answer, check the SP output by running it manually from SQL query window, like this:
Code:
EXEC [_ADD_GM_GEAR] 'yourchar', 'LIGHT', <degree>, <plus>
(You can change the LIGHT to HEAVY, or CLOTHES) See if you got successful output. Then use teleport your char manually using /gotown or something, see if you got the item.
good luck ;)

Originally Posted by
B1QB0SS
teleporting me only
and nothing happens !
So any Fix for teleport only ?!
Good item Return Scroll h3
Well, teleports works, means the SP didn't. Run the SP manually from SQL query window (see previous answer), and post the output here.
PS: sorry for late answers, I slept early last night :P, blacksheep25, thank you for answering