Jump to content

StarSCreams

Members
  • Posts

    226
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by StarSCreams

  1. search in forum -.- http://maxcheaters.com/forum/index.php?topic=25626.0
  2. not allowed to change the code, since they would be violating copyright law l2jserver.
  3. search in this section: http://maxcheaters.com/forum/index.php?board=37.0 npc class master byAllen
  4. create a zone type ARENA, and changue in configurations for the increment to +pvp for pk :P
  5. the client is not respond to server version, check protocols
  6. Shadai look at the script (npc hb)
  7. looking again and again activated the search button: D
  8. first you have to look out for these editing chronicle second look at the code you put this fine otherwise gives you that error because the code is not right or left a space at the last
  9. any version of mysql is fine but the more new best
  10. forum for in section l2jserver custom server mod link: http://www.l2jserver.com/forum/viewforum.php?f=73&sid=1288bc728005afb0e1f36c0c0f391a8c
  11. i add if npcId == SENTRY1 : if npc.getInstanceId() in self.worlds: world = self.worlds[npc.getInstanceId()] st.playSound("ItemSound.quest_middle") player.sendPacket(CreatureSay(npc.getObjectId(), 0, npc.getName(), "Master, Forgive Me!")) st.giveItems(B_Eva,1) openDoor(DOOR1,npc.instanceId) && openDoor(DOOR2,npc.instanceId); ;P
  12. search in the forum in this section: http://maxcheaters.com/forum/index.php?board=62.0
  13. open port in your router this : (3306) or using your navicat
  14. this is my config.xml and work fine <?xml version="1.0" encoding="UTF-8"?> <!-- Externalhost here (Internet IP) or Localhost IP for local test --> <gameserver address="192.168.0.100" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ipconfig.xsd"> <!-- Localhost here --> <define subnet="127.0.0.0/8" address="192.168.0.100" /> <!-- Internalhosts here (LANs IPs) --> <define subnet="10.0.0.0/8" address="192.168.0.100" /> <define subnet="172.16.0.0/19" address="192.168.0.100" /> <define subnet="192.168.0.0/16" address="192.168.0.100" /> </gameserver>
  15. This section goes customers and explain the steps you open file to edit new item ID armor.grp itemname.grp open and put the name with the same ID open data / stats / items and create an xml file with the rank of the item ID for example because 001.xml save to start the server and chan! ready.
  16. [EN] I will delete the post because it is not allowed in Spanish [ES]te van a eliminar el post porque no se permite en español
  17. if you have the original script l2jserver, there is no reward for losers, there is only reward in case of a draw and winners
  18. modify something in the part where the credits are l2jserver
  19. - show your build.xml line 209 - download the lastest subversion o silk-subversion 1.6.17 - check the JAVA_HOME - update jdk look
  20. fix the link and post no here, in the forum client mods.
  21. ok bro I'll try that after I come up with an answer
  22. i need work this patch: Index: java/config/Character.properties =================================================================== --- java/config/Character.properties (revision 3633) +++ java/config/Character.properties (working copy) @@ -528,6 +528,10 @@ # Default: False AutoLootRaids = False +# If set to true, adena is automatically picked up, even if AutoLoot is set to false. +# Default: False +AutoLootAdena = False + # This is the time in seconds that it will take for the player command "//unstuck" to activate. # Default: 300 UnstuckInterval = 300 Index: java/net/sf/l2j/Config.java =================================================================== --- java/net/sf/l2j/Config.java (revision 3633) +++ java/net/sf/l2j/Config.java (working copy) @@ -162,6 +162,7 @@ public static int STARTING_SP; public static boolean AUTO_LOOT; public static boolean AUTO_LOOT_RAIDS; + public static boolean AUTO_LOOT_ADENA; public static int UNSTUCK_INTERVAL; public static int TELEPORT_WATCHDOG_TIMEOUT; public static int PLAYER_SPAWN_PROTECTION; @@ -1304,6 +1305,7 @@ STARTING_SP = Integer.parseInt(Character.getProperty("StartingSP", "0")); AUTO_LOOT = Boolean.parseBoolean(Character.getProperty("AutoLoot", "false")); AUTO_LOOT_RAIDS = Boolean.parseBoolean(Character.getProperty("AutoLootRaids", "false")); + AUTO_LOOT_ADENA = Boolean.parseBoolean(Character.getProperty("AutoLootAdena", "false")); UNSTUCK_INTERVAL = Integer.parseInt(Character.getProperty("UnstuckInterval", "300")); TELEPORT_WATCHDOG_TIMEOUT = Integer.parseInt(Character.getProperty("TeleportWatchdogTimeout", "0")); PLAYER_SPAWN_PROTECTION = Integer.parseInt(Character.getProperty("PlayerSpawnProtection", "0")); @@ -2374,6 +2376,7 @@ else if (pName.equalsIgnoreCase("SpBookNeeded")) SP_BOOK_NEEDED = Boolean.parseBoolean(pValue); else if (pName.equalsIgnoreCase("AutoLoot")) AUTO_LOOT = Boolean.parseBoolean(pValue); else if (pName.equalsIgnoreCase("AutoLootRaids")) AUTO_LOOT_RAIDS = Boolean.parseBoolean(pValue); + else if (pName.equalsIgnoreCase("AutoLootAdena")) AUTO_LOOT_ADENA = Boolean.parseBoolean(pValue); else if (pName.equalsIgnoreCase("AutoLootHerbs")) AUTO_LOOT_HERBS = Boolean.parseBoolean(pValue); else if (pName.equalsIgnoreCase("AltKarmaPlayerCanBeKilledInPeaceZone")) ALT_GAME_KARMA_PLAYER_CAN_BE_KILLED_IN_PEACEZONE = Boolean.parseBoolean(pValue); Index: java/net/sf/l2j/gameserver/model/actor/L2Attackable.java =================================================================== --- java/net/sf/l2j/gameserver/model/actor/L2Attackable.java (revision 3605) +++ java/net/sf/l2j/gameserver/model/actor/L2Attackable.java (working copy) @@ -42,11 +42,11 @@ import net.sf.l2j.gameserver.model.L2Party; import net.sf.l2j.gameserver.model.L2Skill; import net.sf.l2j.gameserver.model.actor.instance.L2DoorInstance; -import net.sf.l2j.gameserver.model.actor.instance.L2NpcInstance; import net.sf.l2j.gameserver.model.actor.instance.L2FortSiegeGuardInstance; import net.sf.l2j.gameserver.model.actor.instance.L2GrandBossInstance; import net.sf.l2j.gameserver.model.actor.instance.L2MinionInstance; import net.sf.l2j.gameserver.model.actor.instance.L2MonsterInstance; +import net.sf.l2j.gameserver.model.actor.instance.L2NpcInstance; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; import net.sf.l2j.gameserver.model.actor.instance.L2PetInstance; import net.sf.l2j.gameserver.model.actor.instance.L2SiegeGuardInstance; @@ -1402,7 +1402,8 @@ // Check if the autoLoot mode is active if (isFlying() || (!isRaid() && Config.AUTO_LOOT) - || (isRaid() && Config.AUTO_LOOT_RAIDS)) + || (isRaid() && Config.AUTO_LOOT_RAIDS) + || (Config.AUTO_LOOT_ADENA && item.getItemId() == 57)) player.doAutoLoot(this, item); // Give the item(s) to the L2PcInstance that has killed the L2Attackable else dropItem(player, item); // drop the item on the ground on L2JServer Last Revision Freya. waiting help.. EDIT: when I add the patch nothing happens the adena still get the inventory of character
  23. if I add this type of configuration, there is currently setup for "autolootraidboss" and "general autoloot"and I want to add "autoloot adena" if you can help me I appreciate matim :D
  24. hi all, I just want a little help in this mod, I have a code but I have worked I think is wrong, I incorporate into my project on: autolootadena for the adena dropping on the floor and other items not autoloot item in order all exept adena. this code does not work for me I have to l2jserver freya @@ -1402,7 +1402,8 @@ // Check if the autoLoot mode is active if (isFlying() || (!isRaid() && Config.AUTO_LOOT) - || (isRaid() && Config.AUTO_LOOT_RAIDS)) + || (isRaid() && Config.AUTO_LOOT_RAIDS) + || (Config.AUTO_LOOT_ADENA && item.getItemId() == 57)) player.doAutoLoot(this, item); // Give the item(s) to the L2PcInstance that has killed the L2Attackable else dropItem(player, item); // drop the item on the ground any solution? thanks sorry my bad english :-\
  25. with l2jserver, I can not see the diff of the updates I get the following error that is why we use this system.
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock