
barao45
Members-
Posts
231 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by barao45
-
hi! there aren't npc files?.
-
Code Automatic Random Zone Changer
barao45 replied to StinkyMadness's topic in Server Shares & Files [L2J]
Thanks. It works very well. And how can i add this zones as a Pvp Zone for example?. That logis is in RandomZoneTaskManager?. Or i can modify random_zone.xml? -
LF Buying Eternity autofarm Like for L2jMobius Autofarm
barao45 replied to barao45's question in Request Server Development Help [L2J]
Eternity like. -
Code L2 High Five Custom Stuff For free
barao45 replied to silvar1997's topic in Server Shares & Files [L2J]
could you reshare please? -
Help Buff Stolen in Steal Divinity
barao45 posted a question in Request Server Development Help [L2J]
Hi people!. Could anybody help me please?. I have a problem with steal divinity of soulbreaker. This skill always steal one or two buff. Im using l2jsunrise. And this is the xml. Do you know how can i fix it?. In lvl 5 you can steal 7 buffs. <skill id="1440" levels="5" name="Steal Divinity"> <!-- Confirmed CT2.5 --> <table name="#magicLvl"> 55 60 64 68 72 </table> <table name="#maxNegated"> 3 4 5 6 7 </table> <table name="#mpConsume"> 40 44 48 51 53 </table> <table name="#mpInitialConsume"> 10 11 12 13 14 </table> <set name="castRange" val="600" /> <set name="coolTime" val="200" /> <set name="effectRange" val="1100" /> <set name="hitTime" val="1200" /> <set name="isDebuff" val="true" /> <set name="isMagic" val="1" /> <!-- Magic Skill --> <set name="magicLvl" val="#magicLvl" /> <set name="maxNegated" val="#maxNegated" /> <set name="mpConsume" val="#mpConsume" /> <set name="mpInitialConsume" val="#mpInitialConsume" /> <set name="nextActionAttack" val="true" /> <set name="operateType" val="A1" /> <set name="offensive" val="true" /> <set name="reuseDelay" val="15000" /> <set name="targetType" val="ONE" /> <for> <effect name="StealAbnormal" noicon="1"> <param slot="buff" rate="5" max="#maxNegated" /> </effect> </for> </skill> -
Hi people!! Where can i edit skills like StealDivinity for editing buff quantity skills stolen, and chance of trick, switch and fear?. Im using L2JSunrise Thanks!!
-
Hello people how are you doing! consultation. Does anyone know where I should look to modify so that the kariks and those mobs that are in Anthara do not return home? It happens many and very often that I am killing kariks and they constantly return to their place. Im using L2jSUnrise
-
Solved. CLose. It was a diferrence between xmltrees and skillsconfigs.
-
Hello people! how are they?. Query, I have been with L2JSunrise for a long time with a server already online, it happens to me that from what I see they do not receive a good response from the developers for their clients, but it is happening to me among all the problems that the drops are not correctly accurate. Has anyone been able to solve this problem in L2JSunrise? I already need to start looking outside their community. Thank you
-
Hello how are you?. I need help please to implement this mod. What happens is when I try to ask for a skill in the npc, it throws me a critic that says to update the files that are defective. I pass some of what I have to see if someone can help me. Thank you!. RebirthEngineConfig ----------------------- package l2r; import java.io.File; import java.io.FileInputStream; import java.io.InputStream; import java.util.ArrayList; import java.util.List; import l2r.gameserver.util.Util; import gr.sr.configsEngine.AbstractConfigs; import gr.sr.utils.L2Properties; /** * @author vGodFather */ public class RebirthEngineConfigs extends AbstractConfigs { private static final String CONFIG_FILE = "./config/extra/rebirth.ini"; public static int REBIRTH_MIN_LEVEL; public static int REBIRTH_MAX; public static int REBIRTH_RETURN_TO_LEVEL; public static List<Integer> REBIRTH_SKILL_IDS; public static int REBIRTH_SKILL_SELLER_ID; public static String[] REBIRTH_ITEMS; @Override public void loadConfigs() { // Load Server L2Properties file (if exists) L2Properties rebirth = new L2Properties(); final File file = new File(CONFIG_FILE); try (InputStream is = new FileInputStream(file)) { rebirth.load(is); } catch (Exception e) { _log.error("Error while loading rebirth system settings!", e); } REBIRTH_SKILL_SELLER_ID = Integer.parseInt(rebirth.getProperty("RebirthSkillSellerId", "500")); REBIRTH_MIN_LEVEL = Integer.parseInt(rebirth.getProperty("RebirthMinLevel", "78")); REBIRTH_MAX = Integer.parseInt(rebirth.getProperty("RebirthMaxAllowed", "3")); REBIRTH_RETURN_TO_LEVEL = Integer.parseInt(rebirth.getProperty("RebirthReturnToLevel", "1")); REBIRTH_ITEMS = rebirth.getProperty("RebirthItems", "").split(";"); String[] ids = rebirth.getProperty("RebirthSkillIds", "90045,90046,90047,90048,90049,90050,90051,90052,90053,90054,90055,90056,90057,90058,90059,90060,90061,90062,90063,90064").split(","); REBIRTH_SKILL_IDS = new ArrayList<>(ids.length); for (String id : ids) { if (Util.isDigit(id)) { REBIRTH_SKILL_IDS.add(Integer.parseInt(id)); } else { _log.warn("Wrong skill id format (RebirthSkillIds) rebirth.ini"); } } } public static RebirthEngineConfigs getInstance() { return SingletonHolder._instance; } private static class SingletonHolder { protected static final RebirthEngineConfigs _instance = new RebirthEngineConfigs(); } } FILE SKILLGROUP.dat ------------- 90045 1 14 2 0 4294967295 0 0.00000000 0 icon2.skill1240 0 0 0 a,none\0 0 -1 -1 0 a,none\0 90045 2 14 2 0 4294967295 0 0.00000000 0 icon2.skill1240 0 0 0 a,none\0 0 -1 -1 0 a,none\0 90045 3 14 2 0 4294967295 0 0.00000000 0 icon2.skill1240 0 0 0 a,none\0 0 -1 -1 0 a,none\0 continue..... 90045 1 a,XbCustom Rebirth Skill Guidance\0 a,Increases Accuracy 5%.\0 a,none\0 a,none\0 90045 2 a,XbCustom Rebirth Skill Guidance\0 a,Increases Accuracy 10%.\0 a,none\0 a,none\0 90045 3 a,XbCustom Rebirth Skill Guidance\0 a,Increases Accuracy 15%.\0 a,none\0 a,none\0 I found what is the problem, it was a texture error. Buy when y try to get a skill i get an message, Wrong Packet Data in Aquired Skill. Does anybody an idea how to resolve it?.
-
Help L2jfrozen rebirht system
barao45 replied to sigma7's question in Request Server Development Help [Greek]
Have you solved it? -
Discussion How make a PVE Bonus skill
barao45 replied to Hadriel's topic in Server Development Discussion [L2J]
I made one. And i'm looking for a defense pve. I'll share with you DMG PVE. <item id="50159" type="EtcItem" name="PVE Bonus Damage - 30 Days"> <set name="icon" val="gaela_icons.pve" /> <set name="etcitem_type" val="RUNE" /> <set name="immediate_effect" val="true" /> <set name="material" val="PAPER" /> <set name="weight" val="120" /> <set name="is_tradable" val="false" /> <set name="is_dropable" val="false" /> <set name="is_sellable" val="false" /> <set name="is_premium" val="true" /> <set name="handler" val="ItemSkills" /> <set name="item_skill" val="30412-1" /> <set name="time" val="43200" /> </item> SKILL <skill id="30412" levels="1" name="PVE Bonus Damage"> <!-- Confirmed CT2.5 --> <set name="magicLvl" val="85" /> <set name="operateType" val="P" /> <set name="skillType" val="BUFF" /> <set name="targetType" val="SELF" /> <for> <mul stat="pvePhysDmg" val="1.15" /> <!-- PVE Damage Power +15.00% --> <mul stat="pvePhysSkillsDmg" val="1.15" /> <!-- PVE Skill Damage Power +15.00% --> <mul stat="pveMagicalDmg" val="1.15" /> <!-- PVE Magic Damage Power +15.00% --> <mul stat="pveBowSkillsDmg" val="1.15" /> <!-- PVE Magic Damage Power +15.00% --> </for> </skill> -
Hello how are you?. I wanted to ask you for help, I am using L2jSunrise, I wanted to ask if you know and can tell me how to configure the time of the instances, like zaken, freya, etc. Thank you
-
Help Adding Stats Items
barao45 replied to barao45's question in Request Server Development Help [L2J]
Im using Sunrise -
Hi people! I need a hand, i would like to add other stats in l2jsunrise, for example phsysicaldefensepve, there are a pysicalattack buy not defentse, it's posible to do that?. I wanna create an item that if you have it in your inventory add stats.
-
Help Rebirth system for L2j aCis
barao45 replied to criss22's question in Request Server Development Help [L2J]
hi people. I have configured everything for rebirth but when I talk to the npc he tells me that he has no skills to teach. Does anyone know where I could have gone wrong? -
Hi people! how are you?. I'm needing a hand to configura vitality on server x50. Wich is the normal configuration for a server with this rates?. Player that kills mobs is always with vitality x4. # --------------------------------------------------------------------------- # Vitality system rates. Works only if EnableVitality = True # --------------------------------------------------------------------------- # The following configures the XP multiplier of each vitality level. Basically, you have # 5 levels, the first one being 0. Official rates are: # Level 1: 150% # Level 2: 200% # Level 3: 250% # Level 4: 300% # Take care setting these values according to your server rates, as the can lead to huge differences! # Example with a server rate 15x and a level 4 vitality = 3. => final server rate = 45 (15x3)! RateVitalityLevel1 = 1.5 RateVitalityLevel2 = 2. RateVitalityLevel3 = 2.5 RateVitalityLevel4 = 3. # If you increase that number player will have full vitality till that level # make this option 0 in order to disable this feature # Default: 0 FullVitalityTillLevel = 0 # These options are to be used if you want to increase the vitality gain/lost for each mob you kills # Default values are 1. RateVitalityGain = 0.3 RateVitalityLost = 1. # This defines how many times faster do the players regain their vitality when in peace zones RateRecoveryPeaceZone = 1. # This defines how many times faster do the players regain their vitality when offline # Note that you need to turn on "RecoverVitalityOnReconnect" to have this option effective RateRecoveryOnReconnect = 4.
-
Help Merchants SevenSigns in City
barao45 posted a question in Request Server Development Help [L2J]
Hello people!. I would like to put merchants in Giran City. Do you know how can put them ther and allow users to use it all time. THanks -
I use another version of zonename-e.dat where with another files are working. there ir another file that configure map location? por example in the interface?.
-
Does anybody knows where can i found a interface where there is a char code to protect or block inventory of characters? and block user trades or drop items. Thanks!
-
i have H5 client. And i used another file zonename-e.dat and i still doesnt' working.
-
Hello how are you?. I wanted to ask you how the points to obtain tokens in the Olympics would work correctly, since I have a player who played 22 fights and obtained 19 points but did not obtain tokens. This is the configuration I have. # --------------------------------------------------------------------------- # Olympiad Settings # --------------------------------------------------------------------------- # The defaults are set to be retail-like. # If you modify any of these settings your server will deviate from being retail-like. # Warning: # Please take extreme caution when changing anything. # Also please understand what you are changing before you do so on a live server. # --------------------------------------------------------------------------- # Olympiad Start Time in Military hours Default 6pm (18) # Default: 18 AltOlyStartTime = 18 # Olympiad Start Time for Min's, Default 00 so at the start of the hour. # Default: 00 AltOlyMin = 00 # Maximum number of buffs. # Default: 5 AltOlyMaxBuffs = 5 # Olympiad Competition Period, Default 6 hours. # (If set different, should be increment by 10mins) # Default: 21600000 AltOlyCPeriod = 21600000 # Olympiad Battle Period, Default 5 minutes. # Default: 300000 AltOlyBattle = 300000 # Olympiad Weekly Period, Default 1 week # Used for adding points to nobles # Default: 604800000 AltOlyWPeriod = 604800000 # Olympiad Validation Period, Default 12 Hours. # Default: 43200000 AltOlyVPeriod = 43200000 # Points for reaching Noblesse for the first time # Default: 10 AltOlyStartPoints = 10 # Points every week # Default: 10 AltOlyWeeklyPoints = 10 # Required number of participants for the class based games # Default: 11 AltOlyClassedParticipants = 9 # Required number of participants for the non-class based games # Default: 11 AltOlyNonClassedParticipants = 9 # Required number of participants for the 3x3 teams games # Default: 6 AltOlyTeamsParticipants = 6 # Number used for displaying amount of registered participants, messages "Fewer than ..." or "More than ...". # 0 for displaying digits instead of text phrase (old style). # Default: 100 AltOlyRegistrationDisplayNumber = 100 # Reward for the class based games # Format: itemId1,itemNum1;itemId2,itemNum2... # Default: 13722,50 AltOlyClassedReward = 13722,50 # Reward for the non-class based games # Format: itemId1,itemNum1;itemId2,itemNum2... # Default: 13722,40 AltOlyNonClassedReward = 13722,40 # Reward for the 3x3 teams games # Format: itemId1,itemNum1;itemId2,itemNum2... # Default: 13722,85 AltOlyTeamReward = 13722,85 # ItemId used for exchanging to the points. # Default: 13722 AltOlyCompRewItem = 13722 # The minimal matches you need to participate to receive point rewards # Default: 15 AltOlyMinMatchesForPoints = 9 # Rate to exchange points to reward item. # Default: 1000 AltOlyGPPerPoint = 1000 # Noblesse points awarded to Heros. # Default: 200 AltOlyHeroPoints = 200 # Noblesse points awarded to Rank 1 members. # Default: 100 AltOlyRank1Points = 100 # Noblesse points awarded to Rank 2 members. # Default: 75 AltOlyRank2Points = 75 # Noblesse points awarded to Rank 3 members. # Default: 55 AltOlyRank3Points = 55 # Noblesse points awarded to Rank 4 members. # Default: 40 AltOlyRank4Points = 40 # Noblesse points awarded to Rank 5 members. # Default: 30 AltOlyRank5Points = 30 # Maximum points that player can gain/lose on a match. # Default: 10 AltOlyMaxPoints = 10 # Hero tables show last month's winners or current status. # Default: True AltOlyShowMonthlyWinners = True # Olympiad Managers announce each start of fight. # Default: True AltOlyAnnounceGames = True # Restrict specified items in Olympiad. ItemID's need to be separated with a comma (ex. 1,200,350) # Equipped items will be moved to inventory during port. # Default: 6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,9388,9389,9390,17049,17050,17051,17052,17053,17054,17055,17056,17057,17058,17059,17060,17061,20759,20775,20776,20777,20778,14774 AltOlyRestrictedItems = 6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,9388,9389,9390,17049,17050,17051,17052,17053,17054,17055,17056,17057,17058,17059,17060,17061,20759,20775,20776,20777,20778,14774 # Enchant limit for items during Olympiad battles. Disabled = -1. # Default: -1 AltOlyEnchantLimit = -1 # Log all Olympiad fights and outcome to olympiad.csv file. # Default: False AltOlyLogFights = True # Time to wait before teleported to arena. # Default: 120 AltOlyWaitTime = 120 # Divider for points in classed and non-classed games # Default: 5, 5 AltOlyDividerClassed = 5 AltOlyDividerNonClassed = 5 # Maximum number of matches a Noblesse character can join per week # Default: 70 AltOlyMaxWeeklyMatches = 70 # Maximum number of Class-Irrelevant Individual matches a character can join per week # Default: 60 AltOlyMaxWeeklyMatchesNonClassed = 60 # Maximum number of Class Individual matches a character can join per week # Default: 30 AltOlyMaxWeeklyMatchesClassed = 30 # Maximum number of Class-Irrelevant Team matches a character can join per week # Default: 10 AltOlyMaxWeeklyMatchesTeam = 10 # Enable or disable certification transforms in oly # Default: False BlockCertification = False # --------------------------------------------------------------------------- # Alternative Olympiad System # --------------------------------------------------------------------------- # With this you can enable or disable olympiad system # Is not recommended for already running server only for fresh servers # Default: True EnableOlympiad = True # Set this to true if you want random look-name-titles-no clan crests in olympiad # Default: False EnableOlyAntifeed = False # Set this to true if you want only one same pc ip + external in one match # Default: False EnableOlyIpAntifeed = False # --------------------------------------------------------------------------- # Olympiad period settings # --------------------------------------------------------------------------- # Example for Olympiad every 2 weeks: # AltOlyPeriod = WEEK # AltOlyPeriodMultiplier = 2 # This option allows to change the Olympiad period. # MONTH - Olympiad period every month. # WEEK - Olympiad period every week. # SUNRISE - Olympiad period every day you set. Example: 1,5,10,25 etc (Every 5 days!) # Default: MONTH AltOlyPeriod = MONTH # Change the Olympiad frequency. # The value is a multiplier of period type and works for all types except SUNRISE type # i.e. if type is MONTH and multiplier is 2, # then Olympiad will occur every 2 months. # Default: 1 AltOlyPeriodMultiplier = 1 # Works only if you have set AltOlyPeriod = SUNRISE # Olympiad End Period Date - day(s) of month # (e.g. 1 would mean oly period ends every 1st day of month) # (e.g. 1,15 would mean oly period ends every 1st and 15th day of month) # So there you should write 1,15 (days of every month) # Default: 1 AltOlyEndDate = 1 # Olympiad End Period Time - in format hh:mm:ss (24 hours format) # This does not work with AltOlyPeriod = SUNRISE will use default value: 00:00:00 # Default: 00:00:00 AltOlyEndHour = 00:00:00 # --------------------------------------------------------------------------- # Olympiad Advanced Geodata Strategies # --------------------------------------------------------------------------- # Enable this if you want system to auto correct player location # in case he falls in textures # Default: false OlympiadAutoCorrectLoc = false
-
I tried changing that file but it doesn't work. I found that when you are in a location in the map for example in citadel, hellbound map works but in other places not.
-
Help Dragon Knight Scolts Antharas Lair
barao45 posted a question in Request Server Development Help [Greek]
Hello how are you?. Could someone help me please? I use L2jSunrise but the support is lacking. I see the npc Dragon Night that should have escorts but in Sunrise I don't see that it has them, does anyone know how I can add the escorts and make them work as they should? I hope you can help me. Thank you