SphereCommunity
Undefined symbol 'TRY' - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: Undefined symbol 'TRY' (/Thread-Undefined-symbol-TRY)

Pages: 1 2


RE: Undefined symbol 'TRY' - Mordaunt - 12-04-2012 07:04 AM

I have loaded this script into my server and have ZERO error with it, except for that fact that you did this:

Code:
ON=@EQUIP

SRC.Taming=(<SRC.Taming> +100)



ON=@UNEQUIP

SRC.Taming=(<SRC.Taming> -100)


when you should have done this to get a 100 point boost in taming:

Code:
ON=@EQUIP

src.taming += 100.0



ON=@UNEQUIP

src.taming -= 100.0

Looking at your error it seems to me that your issue is occurring in your crafting menu

Code:
(dg_itens_skill_tinker.scp,589)

Are you sure that you are posting the correct lines? As what you are showing is the item, the dg in your script suggests to me it is an issue in a gump script.

Has the server actually loaded the script that contains the item?


RE: Undefined symbol 'TRY' - Paulo_BR - 12-04-2012 08:04 AM

Already tried everything, and nothing to resolve. And the interesting thing, is that I only get the taming it works, and if I put in taming another item of the same problem. Strange.


RE: Undefined symbol 'TRY' - Extreme - 12-07-2012 09:51 AM

Is your Skill Taming defined?