[QUOTE=evildark;2814273]I do not understand how to Operating,
What I have done is:
1
[QUOTE=evildark;2814273]I do not understand how to Operating,
What I have done is:
1
[QUOTE=evildark;2814273]I do not understand how to Operating,
What I have done is:
1
Where to get icons for this program of "Dynasty & Epics"
and btw, when i add that xml list of mine to the gm shop when i enter in it (in GMSHOP) it's not opening :( and in the server window i see message that "me" was trying to access GM SHOP and that i must ban him :D
error:
IMAGE
english: Application Failed to initialize properly. Click on to finish accepting application
i run an offline server atm and i dont have an password in the database so i leave the field blank but still get the error that it cant connect to the database
worked for me for a while but now it's telling me that it can't open etcitem-table...
any idea where it's coming from?
Happened to me some time ago... but the problem was that I was testing stuff on the DB that the program was using and I managed it to have duplicated items and that was why it happened...
You could also check that the etcitem table has the same fields that the L2J one since I think you're using Oneo DB and I'm not sure, but they should be synced L2JFree's changes to items, armors, and weapons tables wich actually adds a new field to them called item_display_id... So that should be the problem you're having and the solution is quite easy to see...
work with the program in another different DB than the ones on your servers and that in that DB that the program uses, remove those fields added...
With a query like this
Should be ok.Code:ALTER TABLE `armor` DROP `item_display_id`; ALTER TABLE `etcitem` DROP `item_display_id`; ALTER TABLE `weapon` DROP `item_display_id`;
Droppo.-
" Could not initalitze Config file ! Please check the options.ini placed in application root folder. " Uhm ive done everything i had to
Works in linux + wine?
hi droppo what database name should i put in option.ini ? thanks.
Dunno your settings, but you must have a MySQL password... if you're using it without a password you get that problem.
Don't forget to run the included SQL file on the DB you're using on the config file.
If you're using L2JFree atleast you must remove the Item_display_id field on armor, weapon, etcitem tables.
Droppo.-