Jump to content

Sirpaypi

Members
  • Posts

    43
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Sirpaypi

  1. <skill id="1418" levels="1" name="Celestial Shield"> <set name="mpConsume" val="60" /> <set name="target" val="TARGET_ONE" /> <set name="hitTime" val="4000" /> <set name="reuseDelay" val="600000" /> <set name="skillType" val="BUFF" /> <set name="staticReuse" val="true" /> <set name="operateType" val="OP_ACTIVE" /> <set name="castRange" val="400" /> <set name="effectRange" val="900" /> <set name="isMagic" val="true" /> <set name="removedOnAnyActionExceptMove" val="true" /> <for> <effect name="Invincible" time="10" val="0" special="invincible" stackOrder="1" stackType="Instant_Shield" /> </for> </skill>
  2. What you mean by changing pack's language ? And for showing Online or Offline there's many shared working scripts.
  3. What are using ? (L2J / FREE / OFFICIAL) (T_INT , T_2.4/5/)
  4. Here is the code i use on my server. <skill id="922" levels="1" name="Hide"> <set name="target" val="TARGET_SELF" /> <set name="skillType" val="BUFF" /> <set name="reuseDelay" val="150000" /> <set name="magicLvl" val="81" /> <set name="operateType" val="OP_ACTIVE" /> <set name="removedOnAnyActionExceptMove" val="true" /> <set name="removedOnDamage" val="true" /> <for> <effect name="Hide" time="25" val="0"> <mul order="0x30" stat="runSpd" val="0.6" /> </effect> And if you use retail effects : <skill id="922" levels="1" name="Hide"> <set name="target" val="TARGET_SELF" /> <set name="skillType" val="BUFF" /> <set name="reuseDelay" val="180000" /> <set name="magicLvl" val="81" /> <set name="operateType" val="OP_ACTIVE" /> <set name="removedOnAnyActionExceptMove" val="true" /> <set name="removedOnDamage" val="true" /> <for> <effect name="Hide" time="30" val="0"> <mul order="0x30" stat="runSpd" val="0.7" /> </effect>
  5. Use search option it's useful, I swear I've tried many times ;)
  6. I've played them and i really hate !! Lost (PC) Assassin's Creed (PC,PS3) CSS (PC)
  7. "[Geo]BeQMaN" is reported we use 1 button not a sentence. We cant help you because you have no error posted. For me i can answer you : Go build your core, there is something messy.
  8. Well the file you send is broken and i have no time to search how to fix 4share stuff... Well check out this link, you will find the fix ;) http://www.maxcheaters.com/forum/index.php?topic=179745.15
  9. You just have to update your server from L2J or Free... They always use to commits all this :)
  10. You can't control that.
  11. It is a know problem caused by (event, buffer...) can be fixed if you post your script here. And i think it's the buffer downloaded here with the "schemes" system.
  12. Here is the fix : Index: TradeList.java =================================================================== --- TradeList.java (révision 4422) +++ TradeList.java (révision 4423) @@ -1020,6 +1020,11 @@ if (oldItem == null) continue; } + if (oldItem.getItemId() != item.getItemId()) + { + Util.handleIllegalPlayerAction(player, player+" is cheating with sell items", Config.DEFAULT_PUNISH); + return false; + } if (!oldItem.isTradeable()) continue;
×
×
  • Create New...