Jump to content

Olivier

Members
  • Posts

    16
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About Olivier

Profile Information

  • Gender
    Not Telling

Olivier's Achievements

Newbie

Newbie (1/16)

0

Reputation

  1. Maybe this one http://maxcheaters.com/forum/index.php?topic=252188.0
  2. Try this :) ][_2Raquette RateXp = 9 RateSp = 9 RatePartyXp = 1.7 RatePartySp = 1.7 RateDropAdena = 9 RateDropItems = 8 RateDropSealStones = 5 RateDropSpoil = 7 RateDropManor = 3 General Information 24 Buff Slot's 30 min Buff Time 10 min Dance/Song Time Full Retail Subclass, 3rd class , Noblesse etc. Quest 1st and 2nd class item's in lite shop Basic buff's in Lite Buffer Only Dualbox Allowed --------------------------------------------------------------------------- Quest Rates --------------------------------------------------------------------------- RateDropQuest = 5 RateQuestsReward = 4 --------------------------------------------------------------------------- Grand Boss Rates --------------------------------------------------------------------------- AdenaBoss = 2 ItemsBoss = 1 --------------------------------------------------------------------------- Raid Boss Rates --------------------------------------------------------------------------- AdenaRaid = 4 ItemsRaid = 8 --------------------------------------------------------------------------- Enchant Rates --------------------------------------------------------------------------- SafeEnchantFull = 4 SafeEnchant = 3 MaxEnchant = 16 NormalChance = 66% BlessChance = 70% CrystalChance = 75% --------------------------------------------------------------------------- SoulCrystal --------------------------------------------------------------------------- SoulCrystalBreakChance = 10 SoulCrystalLevelChance = 32 OlympiadAltOlyPeriod = 2 WEEK's Mana Potions Disabled DualBox Allowed TVT Events CTF Events Siege's Fort's Offline Shop's And more ..!! Join US http://www.L2Raquette.com Server is open, we have the honor to invite all players and clans to play
  3. L2Raquette Interlude x9 Yesterday started.. No mana potions Just simple buff's No GmShop No Custom 1st and 2nd class transfer (if You don't like quest) items in simple shop just look www.l2raquette.com
  4. If i correctly understand You i shouldn't use : public void get264() {.... . ..} public void get265() {... . ..} I checked other buffers and i found multiple solutions but only one work with my for ex : public void getBuffer264() { Player player = getSelf(); NpcInstance npc = getNpc(); doBuffer264(npc, player, false); } public static void doBuffer264(NpcInstance npc, Player player, boolean servitor) { List<Creature> target = new ArrayList<Creature>(); target.add(player); npc.broadcastPacket(new MagicSkillUse(npc, player, 264, 1, 0, 0)); npc.callSkill(SkillTable.getInstance().getInfo(264, 1), target, true); } But going to that way my Buffer.java script will get ~2k lines of code ....
  5. all id skills which i use are declarated and there are in .xml files doCast working good with se/ee/pp buffs, but not with songs/dances/chants (need party). I tried a lot of (existing) methods any one want work. I think why... that why in skill declarated have target_type= party. i can't change it in all these skills to target_type= target/party ... I think now only one way is change that varible localy in script file but i don't know how to get it ( what metod ) from xml file , give them new varible and then change it. My thinking is correctly ?
  6. All o these codes working but not with dance songs chants : player.doCast(SkillTable.getInstance().getInfo(264,1), player, true); npc.broadcastPacket(new MagicSkillUse(npc, player, 264, 1, 0, 0)); npc.callSkill(SkillTable.getInstance().getInfo(264, 1), player, true); Sorry for beeping that thread on this way, but i need it so much and now i don't have idea how to fix it :((
  7. search all sql tables where id=13136 and npcid=13136
  8. No i think in the same time but in deferent dimensions. What package are you using ? Brick ? (i had the same problem with that)
  9. try to put all ip 127.0.0.1 and then check connection loginserver<=> gameserver remember about iptables.xml ??
  10. My dance/songs/chants target_type= "PARTY" , when i change it on "TARGET" is ok, but i want locally in Buffer.java change that varible. any ideas ?
  11. I fixed my problem (my own idea :) ), but now i have other problem. My Npc Buffer give normaly and correctly buffs from PP,EE,SE but when i want get chants, dances, songs,( type of buffs where need party with caster) don't get it. For example i give here 1 line from html and one form java script : For example part of java code for song of earth public class Buffer extends Functions { . . . . public void get264() { Player player = getSelf(); NpcInstance npc = getNpc(); if(player.getKarma() > 0) return; npc.doCast(SkillTable.getInstance().getInfo(264,1), player, true); } . . } And html : <td><button value="Shield" action="bypass -h scripts_services.Buffer:get64" width=70 height=32 back="L2UI_CT1.Windows_DF_Drawer_Bg_Darker" fore="L2UI_CT1.Windows_DF_Drawer_Bg_Darker"></td> What i should put to fix giving dances chants etc.. ??? Im not so good on java code so i trying do smth by myself but not allways i can fix all problems.
  12. I think that npc is load from some quest too or event. What pack do You have ?
  13. Hello. I have a little problem with buffer. I have l2j project files based on overshare.su <-- all based on xml so that is reason i can't use standard here .py files , server engine "don't understand .py code. I manualy change one of buffer from here and put all code to hml file for ex : <td><img src="L2UI_CH3.shortcut_next_down" width=16 height=16></td> <td><button action="" width=32 height=32 back="icon.skill1040" fore="icon.skill1040"></td> <td><button value="Shield"action="bypass -h npc_%objectId%_Buff 1040" width=70 height=32back="L2UI_CT1.Windows_DF_Drawer_Bg_Darker" fore="L2UI_CT1.Windows_DF_Drawer_Bg_Darker"></td> <td><button value="Might"action="bypass -h npc_%objectId%_Buff 1068" width=70 height=32 back="L2UI_CT1.Windows_DF_Drawer_Bg_Darker" fore="L2UI_CT1.Windows_DF_Drawer_Bg_Darker"></td> <td><button action="" width=32 height=32 back="icon.skill1068" fore="icon.skill1068"></td> <td><img src="L2UI_CH3.shortcut_prev_down" width=16 height=16></td> Npc is visible , and i can talk with them but when i click on "Might" button ( other the same) nothing happened. I trying understand code what is usable in that core ... I trying with deferents type npc varible ,for ex : merchant, npc, <- that is somwhere in code ( dont know where) still nothing. Maybe someone can tell me where i should search to find fix of my problem. Thx anyway. Sorry for my english. Regards Olivier.
  14. I have succeeded in compilation and remove some warings , now at start gameserver i have error: java.lang.Exception at l2p.gameserver.data.xml.holder.ItemHolder.getTemplate(ItemHolder.java:45) at l2p.gameserver.templates.PlayerTemplate.addItem(PlayerTemplate.java:61) at l2p.gameserver.tables.CharTemplateTable.<init>(CharTemplateTable.java:102) at l2p.gameserver.tables.CharTemplateTable.getInstance(CharTemplateTable.java:29) at l2p.gameserver.GameServer.<init>(GameServer.java:182) at l2p.gameserver.GameServer.main(GameServer.java:360) [14:38:28] WARN ItemHolder: Not defined item id : 1146, or out of range! java.lang.Exception at l2p.gameserver.data.xml.holder.ItemHolder.getTemplate(ItemHolder.java:45) at l2p.gameserver.templates.PlayerTemplate.addItem(PlayerTemplate.java:61) at l2p.gameserver.tables.CharTemplateTable.<init>(CharTemplateTable.java:102) at l2p.gameserver.tables.CharTemplateTable.getInstance(CharTemplateTable.java:29) at l2p.gameserver.GameServer.<init>(GameServer.java:182) at l2p.gameserver.GameServer.main(GameServer.java:360) [14:38:28] WARN ItemHolder: Not defined item id : 2369, or out of range! . . . . [14:38:34] WARN ItemHolder: Not defined item id : 4041, or out of range! java.lang.Exception at l2p.gameserver.data.xml.holder.ItemHolder.getTemplate(ItemHolder.java:45) at l2p.gameserver.model.reward.RewardData.<init>(RewardData.java:25) at l2p.gameserver.model.reward.RewardData.<init>(RewardData.java:33) at events.CofferofShadows.Coffer.<clinit>(Coffer.java:27) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:513) at java.lang.Class.newInstance0(Class.java:355) at java.lang.Class.newInstance(Class.java:308) at l2p.gameserver.scripts.Scripts.init(Scripts.java:140) at l2p.gameserver.GameServer.<init>(GameServer.java:199) at l2p.gameserver.GameServer.main(GameServer.java:360) Exception in thread "main" java.lang.ExceptionInInitializerError at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:513) at java.lang.Class.newInstance0(Class.java:355) at java.lang.Class.newInstance(Class.java:308) at l2p.gameserver.scripts.Scripts.init(Scripts.java:140) at l2p.gameserver.GameServer.<init>(GameServer.java:199) at l2p.gameserver.GameServer.main(GameServer.java:360) Caused by: java.lang.NullPointerException at l2p.gameserver.model.reward.RewardData.<init>(RewardData.java:26) at l2p.gameserver.model.reward.RewardData.<init>(RewardData.java:33) at events.CofferofShadows.Coffer.<clinit>(Coffer.java:27) ... 9 more I try to find what is wrong but now dont have idea, maybe some1 can help ?
  15. Yes Win7 , but this is that my 1st problem with compilation, other time i dont have it even if i compile on jre6 or jre7
×
×
  • Create New...