SphereCommunity
i_ingot not allowed - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: i_ingot not allowed (/Thread-i-ingot-not-allowed)



i_ingot not allowed - mrkarlo - 02-23-2013 10:21 AM

hey guys i need help please. there are erros in console :
Code:
Setting new id for base type i_ingot_rose not allowed
ERROR:(ingots.scp,136)Setting new id for base type i_ingot_rose not allowed
ERROR:(ingots.scp,151)Setting new id for base type i_ingot_agapite not allowed
ERROR:(ingots.scp,151)Setting new id for base type i_ingot_agapite not allowed

and when i create all sorts of ingots they look like gembit.

Code:
[ITEMDEF 04542]
DEFNAME=i_ingot_agapite
ID=i_ingot_iron
NAME=Agapite
SKILLMAKE=MINING 90.0
TDATA1=80.0
TDATA2=100.0
RESOURCES=i_ore_agapite
CATEGORY=Items by Professions
SUBSECTION=Blacksmiths
DESCRIPTION=Agapite Ingot

ON=@Create
    COLOR=color_o_agapite



RE: i_ingot not allowed - Mordaunt - 02-23-2013 11:43 AM

Your script is attempting to redefine an item that already exists...
Either change it in the original scripts or change your new script to :

Code:
[ITEMDEF i_ingot_agapite]
ID=i_ingot_iron
NAME=Agapite
SKILLMAKE=MINING 90.0
TDATA1=80.0
TDATA2=100.0
RESOURCES=i_ore_agapite
CATEGORY=Items by Professions
SUBSECTION=Blacksmiths
DESCRIPTION=Agapite Ingot

ON=@Create
    COLOR=color_o_agapite



RE: i_ingot not allowed - mrkarlo - 02-23-2013 09:05 PM

thanx Mordaunt!


RE: i_ingot not allowed - Ultima One - 02-27-2013 03:41 AM

This was the biggest pain of my life when i had to do this on all my armors Sad