
Kotegaeshi92
Members-
Content Count
21 -
Joined
-
Last visited
-
Feedback
0%
Community Reputation
0 NeutralAbout Kotegaeshi92

-
Rank
Vassal
Profile Information
-
Current Mood
Confused
-
Gender
Male
-
Country
Argentina
-
Interests
L2
-
Help Resist / Surrender skills not working
Kotegaeshi92 replied to Kotegaeshi92's question in Request Server Development Help [L2J]
Im actually testing it and with full resistances like "elemental protection, resist wind, fire, earth, aqua, and dances / songs of resistances and its working good, but in that case ill take your advice, tested with surrenders, vortex, everything going ok for now. -
Help Resist / Surrender skills not working
Kotegaeshi92 replied to Kotegaeshi92's question in Request Server Development Help [L2J]
Hi Tryskell, thank you for your response, I managed to solve the problem, its whas some kind of problem with the "Subdiv" statement in the XML, just replaced with "Mul" and adjusted the value to 1.20 in the case of surrender (20% more) or in the case of resist to 0.80 (20% resist) Tested and working good, my acis revision is old, i know, but my proyect its almost complete with this revision. Thank you for your response anyway. Greetings ! -
Help Resist / Surrender skills not working
Kotegaeshi92 posted a question in Request Server Development Help [L2J]
Hi , im having some troubles with resist / surrender skills Example: When using Hurricane after casting surrender to wind, the damage is the same. When using Hurricane after using Resist wind buff, damage is the same. i have checked xml skills and everything is how supposed to be. i have checked formulas, and i dont find any error. if i use "holy weapon " and after i use a holy skill, the damage is calculated ok if i use holy weapon and after i do a physical attack, the damage is calculated ok the problem is resist / surrender skills . Not working at all. -
Hi community, im working with Faction mod and im trying to set when a player dies to go to last captured flag in faction mod, is there any method to do this ? the idea is that the "fixed " button teleports a player to last faction captured flag , i know that "l2tpflaginstance" manages captured flags , so the npc shows a list of captured flags for the team , using this maybe i can set up the button to go to the first flag in the list (the first is the last captured in the npc ) or maybe create other method to store that location when a player capture the flag and bring
-
Hi ! I want to disable buffer class from my server, im using l2jacis, i tried to disable it from classId but it crashes npcs xD So i just need to disable support classes from class manager and sub class manager. is there any idea ? thank you very much Greetings.
-
Help Faction and set Crest
Kotegaeshi92 replied to Kotegaeshi92's question in Request Server Development Help [L2J]
Gracias Jericko ! -
Help Refresh clan skills on skill change
Kotegaeshi92 replied to Kotegaeshi92's question in Request Server Development Help [L2J]
Gracias reynaldo lo voy a probar y te comento los resultados, la idea es que al obtener faccion en mi server, tambien obtenga clan y por lo tanto los clan skills. pero actualmente cuando elijo clan, no me refresca los clan skills instantaneamente, (el clan general esta lv 8 full skill ) entonces hay que re-logear para que tome dichos clan skill. lo pruebo y te comento muchas gracias. -
Help Refresh clan skills on skill change
Kotegaeshi92 posted a question in Request Server Development Help [L2J]
Hi, is there some command to refresh clan skills without re-login ? -
Hi friends , Im having some problems to set a default crest when faction is selected, i cant get the method to set a default crest from crestcache (previously loaded in data/crest) for all faction members. can i get some help with this ? sorry for my bad english. Greetings
-
Hi, im working in this faction mod, and adapted a TvT event from the forum, now its working fine. The only problem is that faction attack restriction interferes with TVT Event, so when 2 players from same faction are in tvt , they cannot attack each other, found this in l2character: if (this instanceof L2PcInstance) { L2PcInstance player = (L2PcInstance) this; L2PcInstance trgtF = null; boolean cond = true; if (!player.isInSiege() && !player.isInOlympiadMode() && !player.isInsideZone(ZONE_PVP)) { if (target instanceof L2Pc
-
Help TVT Teleport
Kotegaeshi92 replied to Kotegaeshi92's question in Request Server Development Help [L2J]
Solved tnx for the answers: just changed _playerInstance.teleToLocation(_coordinates[0], _coordinates[1], _coordinates[2], 0); to _playerInstance.teleToLocation(_coordinates[0], _coordinates[1], _coordinates[2]); Please close. -
Help TVT Teleport
Kotegaeshi92 replied to Kotegaeshi92's question in Request Server Development Help [L2J]
I dont have that metod , maybe i have to import it ? or creating it in l2pcinstance ? -
Help Problem with shop
Kotegaeshi92 replied to Kotegaeshi92's question in Request Server Development Help [L2J]
is solved, thank you very much for your answers , please close -
Kotegaeshi92 started following TVT Teleport
-
Hi everybody ! i need some help with the TVT event, is working everything fine but the teleport to arena is not . i have set te coords in events.properities but when event start the characters stay in the same place, i think the problem is here, but i dont know ... im working with an old rev of Acis... hope you can help me guys .. Thank you ! /* * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (
-
Hi everybody, im triying to prevent game changing color when pvp flag activated, so i found this : writeD(_activeChar.getPvpFlag()); in userinfo.java Maybe i need to delete this or change some value ? or maybe im pointing to incorrect place... thanks for your time and sorry my bad English. Greetings .