Jump to content

'Baggos'

Legendary Member
  • Posts

    3,873
  • Credits

  • Joined

  • Last visited

  • Days Won

    27
  • Feedback

    100%

Everything posted by 'Baggos'

  1. http://www.maxcheaters.com/topic/188577-μερικά-αρχάρια-πράγματα-για-την-java-που-θα-μας-βοηθ/ I hope that will help you to understand.
  2. Εγώ έχω Admin acc και δεν μπαίνω, τι να λέμε τώρα...
  3. Try to become nobl with an item. It is in your config. And then check if the skill still missing. If missing, re-compile your datapack and throw the skills in your server.. Run new database and get the skills table for your old database. I can't think something else because you have not change anything as you said..
  4. Φίλε πρέπει να το δοκιμάσεις με περισσότερα απο 2 bot που βάζεις στο server.. Δεν έρχεσαι και το πουλάς έτσι..
  5. Just a joke. Give us info about your project and what changes you make...
  6. Yes for both. After, you should go at your <C:/User/Workspace/Your sources> and get the files from gameserver/build & datapack/build. Not disk or something.. Just replace again the files of build in your server.
  7. Your eclipse can't find the errors without build?
  8. And why you do not create a pvp zone like this one? After I will tell you how you can create respawn inside..
  9. Do you get any error on method waiter in tvtevent.java? Or warnings? Check and TvTEventManager about warnings.
  10. Maybe because you can use Mana Potions but not restore your MP? Like invul mode. // Mana potions can't be used on event if (((L2PcInstance) activeChar).isInFunEvent() && !Config.TVT_EVENT_POTIONS_ALLOWED) { if (skill.getSkillType() == L2SkillType.MANAHEAL_PERCENT) continue; }
  11. Change event and use http://www.maxcheaters.com/topic/206016-tvt-event-reworked-tvtjoin-tvtleave-tvtstatus/. But I've heard sometimes some players stay out of event.
  12. Also, you should create/edit the skillhandler of potion. Like 2169 does. For example: <skill id="2169" levels="2" name="Magic Haste Potion"> <!-- Lvl 2 is Greater Magic Haste Potion --> <table name="#mAtkSpd"> 1.23 1.3 </table> <table name="#stackOrder"> 2 3 </table> <set name="target" val="TARGET_SELF" /> <set name="skillType" val="BUFF" /> <set name="operateType" val="OP_ACTIVE" /> <set name="isPotion" val="true" /> <set name="buffDuration" val="1200000" /> <cond msgId="113" addName="1"> <player flying="False" /> </cond> <for> <effect name="Buff" time="1200" val="0" stackOrder="#stackOrder" stackType="casting_time_down"> <mul order="0x30" stat="mAtkSpd" val="#mAtkSpd" /> </effect> </for> </skill>
  13. Find Haste Potion for example and make a new item with your stats.
  14. EffectZone.xml <zone type="EffectZone" shape="NPoly" minZ="-4815" maxZ="-315"><!-- Zaken Curse Zone --> <stat name="chance" val="100" />>
  15. Yes but only userInfo & CharInfo. Do not remove anything. Just add _activeChar.isInFunEvent() For example: (UserInfo.java & CharInfo.Java) - if (_activeChar.getTeam() == 1 || (Config.PLAYER_SPAWN_PROTECTION > 0 && _activeChar.isSpawnProtected())) writeC(0x01); // team circle around feet 1= Blue, 2 = red + if (_activeChar.getTeam() == 1 || (Config.PLAYER_SPAWN_PROTECTION > 0 && _activeChar.isSpawnProtected() && _activeChar.isInFunEvent())) writeC(0x01); // team circle around feet 1= Blue, 2 = red - else if (_activeChar.getTeam() == 2) + else if (_activeChar.getTeam() == 2 && _activeChar.isInFunEvent()) writeC(0x02); // team circle around feet 1= Blue, 2 = red
  16. There are no reason for color name. If you use aCis 360+ you should add Aura in teams (Blue,Red) like spawn protection does I guess.. Because and others with aCis 360+ can't see Aura in teams.
  17. http://letmegooglethat.com/?q=maxcheaters+pvp+color+system Best friend.
×
×
  • Create New...