lixxit Posted December 1, 2010 Posted December 1, 2010 Hi all I am using coins from this share ( http://www.maxcheaters.com/forum/index.php?topic=132606.0 ) I will use them as custom currency on my server. Just 1 problem, if i click the item, its says in my gameserver "No item handler registered for item ID xxxx" how can I fix this, I dont want this spamming my gameserver.. :-\ ps- using latest l2j interlude rev please help, and thanks Quote
0 Flash™ Posted December 2, 2010 Posted December 2, 2010 this post the help go for this section [Request] Client Mods Help Quote
0 lixxit Posted December 5, 2010 Author Posted December 5, 2010 Please I need help with this, what can i do? @WhiteBeard, i posted it there, and mod moved it here Quote
0 ~Ge0rge~ Posted December 5, 2010 Posted December 5, 2010 try to double click on a life stone, it is the same error. there is not problem with this :/ Quote
0 Tryskell Posted December 5, 2010 Posted December 5, 2010 It's not client mod related. In UseItem.java find // Items that cannot be used if (_itemId == 57) return; and make it like that (xxxx is your custom item ID which use your aion icon) : // Items that cannot be used if (_itemId == 57 || _itemId == xxxx) return; It should correct your problem. Quote
0 Sinnocent Posted December 5, 2010 Posted December 5, 2010 It's not client mod related. In UseItem.java find // Items that cannot be used if (_itemId == 57) return; and make it like that (xxxx is your custom item ID which use your aion icon) : // Items that cannot be used if (_itemId == 57 || _itemId == xxxx) return; It should correct your problem. do this, and really its not a problem, click any item that isnt consumable and it will say this Quote
0 Tryskell Posted December 5, 2010 Posted December 5, 2010 Do a search in your project with "No item handler registered for item ID", you will have only 3 results, 2 haven't the Config.DEBUG thing, they both look like that : if (handler == null) _log.fine("No item handler registered for item ID " + target.getItemId() + "."); instead of upper code, put : if (handler == null) { if (Config.DEBUG) _log.fine("No item handler registered for item ID " + target.getItemId() + "."); } All errors will be shown only on debug. Quote
Question
lixxit
Hi all I am using coins from this share ( http://www.maxcheaters.com/forum/index.php?topic=132606.0 )
I will use them as custom currency on my server.
Just 1 problem, if i click the item, its says in my gameserver "No item handler registered for item ID xxxx"
how can I fix this, I dont want this spamming my gameserver.. :-\
ps-
using latest l2j interlude rev
please help, and thanks
7 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.