Jump to content

StarSCreams

Members
  • Posts

    212
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by StarSCreams

  1. 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
  2. any version of mysql is fine but the more new best
  3. forum for in section l2jserver custom server mod link: http://www.l2jserver.com/forum/viewforum.php?f=73&sid=1288bc728005afb0e1f36c0c0f391a8c
  4. 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
  5. search in the forum in this section: http://maxcheaters.com/forum/index.php?board=62.0
  6. open port in your router this : (3306) or using your navicat
  7. 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>
  8. 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.
  9. [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
  10. if you have the original script l2jserver, there is no reward for losers, there is only reward in case of a draw and winners
  11. modify something in the part where the credits are l2jserver
  12. - show your build.xml line 209 - download the lastest subversion o silk-subversion 1.6.17 - check the JAVA_HOME - update jdk look
  13. fix the link and post no here, in the forum client mods.
  14. ok bro I'll try that after I come up with an answer
  15. 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
  16. 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
  17. 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 :-\
  18. with l2jserver, I can not see the diff of the updates I get the following error that is why we use this system.
  19. can someone please answer me? took more than 2 weeks without answers
  20. solved, if you help me solve: http://maxcheaters.com/forum/index.php?topic=197928.0, I respond with the solution of the announcements to raidboss by ID
  21. matim thanks for your answer, but I will not explain me well. need to regenerate full hp / cp / mp the first infected player. if you know how to do explain to me where you made the change in the code
  22. Hi I have a question how I can do to make the announcement only spawn a single raidboss thanks
  23. This is not to steal the revisions and amendments made in the timeline of projects you can not see the timeline to normal users like l2jserver
  24. Hello! first to acknowledge the idea of Leki very good idea. first visit his post to know what it is. download the program offered in the post of Leki and continue here Post: http://www.maxcheaters.com/forum/index.php?topic=176833.0 create a file here .bat with a configuration file for downloading the patch stolen are more easy, fast and convenient: D here a picture how it works. EDIT: sorry I forgot to put the download link xD http://www.mediafire.com/?qc3585a8dh4d5be Regards. Credit to me for this files Credits to good idea to Leki
×
×
  • 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