Hello I recently added new custom items (Acid bottle, poison bottle, condenced white potion, Grenade bottle and few others) mainly all those items are for a BG supplier. I linked them well, I renamed and added everything to the idnum2desctable.txt and linked the sprites and it all works good, I can right click on the new item and it shows the sprite/picture and correct details. The only problem now is when I left click on it i crash immediately (Even though I did add the script in my item_db.txt) I'm not sure where the problem is, maybe the view item number? Here is what i added in my item_db.txt for those items
30000,BG_Acid_Bottle,BG Acid Bottle,3,200,,10,,,,,,,,,,,,,{},{},{}
30001,BG_Fire_Bottle,BG Bottle Grenade,3,200,,10,,,,,,,,,,,,,{},{},{}
30002,BG_White_Slim_Potion,BG Condensed White Potion,0,1650,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{}
30006,BG_Blue_Potion,BG Blue Potion,0,5000,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(40,60); },{},{}
30008,BG_Poison_Bottle,BG Poison Bottle,2,5000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ if(Class == Job_Assassin_Cross || Class == Job_Guillotine_Cross || Class == Job_Guillotine_Cross_T) { sc_start SC_DPoison,60000,0; sc_start SC_ASPDPOTION3,60000,9; } else percentheal -100,-100; },{},{}
They are exact match to the original items however I changed the first three elements (ID,AegisName,Name) What am i missing here?