Last edited by imAmplified; 13-06-14 at 12:15 PM.
where can i edit exp rate, drop rate and meso rate? i tried to find at constants but they werent there :(
Look at WorldConstants, and then look at Scania.
So if you want to change your rates into lets say...1500/1000/2. You make scania look like this:Code:Scania(0, 0, 0, 0, (byte) 0, true, true)
That's how you change rates. I think.Code:Scania(0, 1500, 1000, 2, (byte) 0, true, true)
Can someone help me get this running I ran into a few problems an can't seem to get it to work. The login problem is the biggest one I load up the client and instantly my login button goes gray and I can't do anything. The server gets packets all the way up to server listing request
Can anyone tell me how do i fix this error? Cause i have to restart the server as frequent as 5 hours each time this appear.
![]()
Could anyone help me with this error? :O
Exception in thread "main" java.lang.NullPointerException
at server.Start.run<Start.java:64>
at server.Start.main<Start.java:148>
Press any key to continue....
Thanks ~! :)
I am not sure about this, sorry about that as I am only a newbie.
This error hasn't shown before. Are you having an equipment that has more than 200 available slots or anything that is powerful that you have edited?
Hello and have you configured the Server IP?
How do you use !potentialitem? Can someone show an example?
!potentialitem 1000000 60002
Which will give a blue hat with 20% all stats:
!potentialitem <ITEMID> <POTENTIAL ID>
edit: wait a min, that's not right
okay this is how it is:
!potentialitem <ITEMID> <POTENTIAL ID> <POTENTIAL ID> <POTENTIAL ID> <POTENTIAL ID> <POTENTIAL ID>
You HAVE to add 5 ids or it won't work. Only 3 lines will appear in v114+
Example:
!potentialitem 1000000 60002 60002 60002 60002 60002
Last edited by Lowsir; 18-06-14 at 02:49 AM.
It says The command was not used properly. java.lang.ArrayindexOutOfBoundsException: 3
Updated post. If you want to make it eaiser for yourself, just make:
into:Code:equip.setPotential1(Integer.parseInt(splitted[2])); equip.setPotential2(Integer.parseInt(splitted[3])); equip.setPotential3(Integer.parseInt(splitted[4])); equip.setPotential4(Integer.parseInt(splitted[5])); equip.setPotential5(Integer.parseInt(splitted[6]));
And you'll have to only type 3 potential ids instead of 2 extra ids that won't add any actual lines. like.Code:equip.setPotential1(Integer.parseInt(splitted[2])); equip.setPotential2(Integer.parseInt(splitted[3])); equip.setPotential3(Integer.parseInt(splitted[4]));
Thanks soo much =P
- - - Updated - - -
where do i find that code? =o