-
Apprentice
JQ Map Donor speed and jump and able to use skill like GM problem
Hi, I've been using Heliosms source and the donor is gmlevel 1, but due to it was made that way, donor seems to be just like GM, even able to move like normal speed and jump, event use skills. I tried finding the reason or way to change the map way but I have no clue. Can anyone guide me making JQ map donors will be like player?
-
-
Valued Member
Re: JQ Map Donor speed and jump and able to use skill like GM problem
Look at your getAuthSuccess packet in MaplePacketCreator.
-
Apprentice
Re: JQ Map Donor speed and jump and able to use skill like GM problem
I found that mplew.write(c.gmLevel() > 0 ? 1 : 0); seems to be the one. I changed it to mplew.write(c.gmLevel() > 0 ? 2 : 0);
but it turns out not even my GM/Admin can use skills or normal speed and jump. Any solution?
-
Valued Member
Re: JQ Map Donor speed and jump and able to use skill like GM problem
What you did is say if gmLevel is > 0, write 2. The left of the colon is what the value is on true, the right is on false.
What you want is mplew.write(c.gmLevel() > 1 ? 1 : 0);
This is basically saying if gmLevel is > 1, write 1.
-
Apprentice
Re: JQ Map Donor speed and jump and able to use skill like GM problem
Ya I just realized it too that I changed wrong place xD And saw your post I finally done it! Thanks for all your help!