madzkull
Members-
Posts
149 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by madzkull
-
that would be cool if someone manage to adapt them..
-
[Question] Zariche and Akamanah
madzkull replied to madzkull's question in Request Server Development Help [L2J]
thank you ;D please lock the topic -
hi there guys I just wanna ask how can I increase the drop rate of Zariche and Akamanah? so players can get it and others will raid and kill whoever gots the sword...
-
I tried change the code I folllow this Find: String _crystal = _item.getItem().getCrystalType()==1?"D": _item.getItem().getCrystalType()==2?"C": _item.getItem().getCrystalType()==3?"B": _item.getItem().getCrystalType()==4?"A":"S"; and change to: String _crystal = _item.getItem().getCrystalType()==1?"D": _item.getItem().getCrystalType()==2?"C": _item.getItem().getCrystalType()==3?"B": _item.getItem().getCrystalType()==4?"A": _item.getItem().getCrystalType()==5?"S":"S80"; then, find this: _crystals.add(0,0);_crystals.add(1,0);_crystals.add(2,0); _crystals.add(3,0);_crystals.add(4,0);_crystals.add(5,0); and change to: _crystals.add(0,0);_crystals.add(1,0);_crystals.add(2,0); _crystals.add(3,0);_crystals.add(4,0);_crystals.add(5,0);_crystals.add(5,0); Its still the same check the pic
-
[Guide]Admin access levels
madzkull replied to `Rοmeο's topic in Server Development Discussion [L2J]
Thank you this is useful.. -
[HELP] How to make mana potions restore mana like hp potions
madzkull replied to Ramzah's question in Request Server Development Help [L2J]
Thanks for this I was looking for this kind of code =) -
[Share]Disable item drop for low level character
madzkull replied to ServeSATAN's topic in Server Shares & Files [L2J]
do you guys know how to disable mail messages for low level character? -
[Share]Disable item drop for low level character
madzkull replied to ServeSATAN's topic in Server Shares & Files [L2J]
Thank you! I was waiting for this... This one also disabling sending mails too? -
thanks for this I'll try this later...this is only trade right? what about drop and sending mail ? I try this one I'm not sure if it works can you guys check it? I manage to see it in RequestDropItem.java //Players cannot Drop Items before level 40 if (activeChar.getLevel() < 40) activeChar.sendMessage("You cannot drop items until you are level 40"); activeChar.sendPacket(new SystemMessage(SystemMessageId.NOTHING_HAPPENED)); return;
-
[Request]Craft Manager patch
madzkull replied to madzkull's question in Request Server Development Help [L2J]
I tested it but its still the same check the picture...... -
hi guys is there a way to disable character trade,mail, drop when they create a new char? cause in my friend's server theres starting money when you create new char... Other player will just create account and send the money to their char... So I hope theres a way wherein they have to be level 40 in order to trade.. I also want mana potion have cooldowns just like healing potions when they use it because if theres no cooldown... Mage type characters will abuse this so maybe you guys can help with my problems thanks again guys.....
-
[Request]Craft Manager patch
madzkull replied to madzkull's question in Request Server Development Help [L2J]
thanks I will try to test this again later... =) -
[Request]Craft Manager patch
madzkull replied to madzkull's question in Request Server Development Help [L2J]
I found a bug in the craft manager it only identifies until class S only when I try using dynasty recipe it doesn't recognize it.. -
[Request]Craft Manager patch
madzkull replied to madzkull's question in Request Server Development Help [L2J]
WOW adenaman has done it again! thank you very much... its build successful now =) you are a blessing in disguise for me... THANKS AGAIN! -
[Request]Craft Manager patch
madzkull replied to madzkull's question in Request Server Development Help [L2J]
I've already did I was trying to add you on yahoo messenger bauwbas.... you can check the file I uploaded it -
[Request]Craft Manager patch
madzkull replied to madzkull's question in Request Server Development Help [L2J]
yes its already imported import com.l2spartan.gameserver.model.L2ItemInstance; import com.l2spartan.gameserver.model.L2Multisell; I can't paste all the L2craftmanagerinstance.java here but I just uploaded on the net you can check the file here ;) -
[Request]Craft Manager patch
madzkull replied to madzkull's question in Request Server Development Help [L2J]
I've already corrected those imports the problem is its all with the L2CraftManagerInstance.java file maybe theres a correct version of it.. -
[Request]Craft Manager patch
madzkull replied to madzkull's question in Request Server Development Help [L2J]
here it is ============================================================================================================== [javac] Compiling 1495 source files to E:\workspace\l2jspartan\L2Spartan-Game\build\classes [javac] E:\workspace\l2jspartan\L2Spartan-Game\java\com\l2spartan\gameserver\model\actor\instance\L2CraftManagerInstance.java:57: cannot find symbol [javac] symbol : method SeparateAndSend(int,com.l2spartan.gameserver.model.actor.instance.L2PcInstance,boolean,double) [javac] location: class com.l2spartan.gameserver.model.L2Multisell [javac] L2Multisell.getInstance().SeparateAndSend(Integer.parseInt(command.substring(9).trim()), player, false, getCastle().getTaxRate()); [javac] ^ [javac] E:\workspace\l2jspartan\L2Spartan-Game\java\com\l2spartan\gameserver\model\actor\instance\L2CraftManagerInstance.java:103: cannot find symbol [javac] symbol : method isHeroitem() [javac] location: class com.l2spartan.gameserver.model.L2ItemInstance [javac] && !_item.isHeroitem()) [javac] ^ [javac] E:\workspace\l2jspartan\L2Spartan-Game\java\com\l2spartan\gameserver\model\actor\instance\L2CraftManagerInstance.java:297: cannot find symbol [javac] symbol : method getEquipSlot() [javac] location: class com.l2spartan.gameserver.model.L2ItemInstance [javac] L2ItemInstance[] unequiped = player.getInventory().unEquipItemInSlotAndRecord(_item.getEquipSlot()); [javac] ^ [javac] 3 errors =================================================================================================== -
hi guys I'm trying to make this one work but I can't compile this cause it gives me compile errors... I might need your help on this one http://www.maxcheaters.com/forum/index.php?topic=167212.0 Thats the latest craft manager I've seen... Please help me make it work in epilogue... :( Thanks in advance guys..
