Jump to content

arm4729

Members
  • Posts

    231
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by arm4729

  1. really in 2020 ? on a cheating forum ? we can just first casino website or betting
  2. if you need i can give you AI for this bots , if you want to test on live server pm me
  3. can you please explain one more time how to add this to already having interface ?? i put my interface.xdat in target folder and press compile , i get this D:\New folder (2)\Editing textures\xdat>java -jar xdat-compiler.jar compile target/interface.xdat Try compile from target/xml/ collecting windwos's data... 0.001s collecting shortcut's data... 0.0s collecting defpos's data... 0.0s Serialize data... 0.0s Save in to file D:OTHEREditing texturesxdat_Editorxdat2interface.xdat 0.001s done D:\New folder (2)\Editing textures\xdat>pause Press any key to continue . . .
  4. i need to know what number to set iterations and threadpool settings for 2.39 ghz dual core / 100 bots spawned
  5. hey thank you i was after many minutes of trying to make 2 separate task for walkers and others i need a list to make all fakeplayers that are inside town to use a other separate aitask from players that are in combat zone , i am trying to spawn 100 bots ... 30 in town and 60 in lets say monastery of sillence and pagans temple i want to get best performance out of them because sometime they get stuck and get an error in console about aitask i changed this and i google it a bit , i was trying to get best performance for 100 spawned bots do you have any suggestions ? # Specifies how many threads will be in a single scheduled pool. ThreadsPerScheduledThreadPool = 33 (it was 4) # Determines the amount of instant thread pools. If set to -1, the server will decide the amount depending on the available processors. InstantThreadPoolCount = -1 # Specifies how many threads will be in a single instant pool. ThreadsPerInstantThreadPool = 33 (it was 8) and im using separate iterations for walkers and others that are in combat private final int aiTaskRunnerInterval = 180; private final int _playerCountPerTask = 193; (this is combaT) private final int aiTaskRunnerInterval = 4800; private final int _playerCountPerTask = 93;(this is walkers) i dont know if im doing something good here but bots are running better cpu dual core 2.39ghz
  6. yes you are a funny greek guy , great to have you here only problem is you are below subject i am running windows 10 probably because of compability problems windows runs the game service pack 2 or something like this
  7. public List<FakePlayer> getFakePlayers() { return World.getInstance().getPlayers().stream().filter(x -> x instanceof FakePlayer && !x.isInsideZone(ZoneId.PEACE)).map(x -> (FakePlayer) x) i want to get the count of fakeplayers that are not inside a peacefull zone
  8. i dont think is gpu because is not only me getting
  9. Why i get this critical error whenever i spawn more than 10-20 bots ? History: FMallocWindows::Malloc <- FMallocWindows::Realloc <- 00000000 10080 FArray <- FArray::Realloc <- 45*224 <- UParticleEmitter::Initialized <- UMeshEmitter::Initialize <- AEmitter::Tick <- ANProjectile::Tick <- ANSkillProjectile::Tick <- TickAllActors <- ULevel::Tick <- (NetMode=0) <- TickLevel <- UGameEngine::Tick <- UpdateWorld <- MainLoop or this 2020.12.14 15:44:35 OS : Windows Vista 6.2 (Build: 9200) CPU : GenuineIntel PentiumPro-class processor @ 2999 MHz with 2047MB RAM Video : AMD Radeon (TM) R7 370 Series Graphics (1429) Insufficient Memory. Please check the Virtual Memory Option and avilable hard drive space. You can check them by going to : Control Panel->System->Advanced->Performance->Settings->Advanced->Virtual memory. History: FMallocWindows::Malloc <- FMallocWindows::Realloc <- 00000000 7392 FArray <- FArray::Realloc <- 33*224 <- UParticleEmitter::Initialized <- UMeshEmitter::Initialize <- AEmitter::Tick <- TickAllActors <- ULevel::Tick <- (NetMode=0) <- TickLevel <- UGameEngine::Tick <- UpdateWorld <- MainLoop
  10. hello mxc forum :) can anyone help me to create a command in java or to use if exisiting , to make a character set to a clan ? i don't know if it's possible but i have an example " int _nameColor0 = 0xFFFFFF; _Player.getAppearance().setNameColor(_nameColor0); " this makes the character to get name color white , can someone tell me how i can make the character to set into a clan , clan id that i want to ? im trying this way Player.setClan(268436844); 268436844 is clanid in database , but i think i miss something
  11. I just want to tell you that after ~ 5 months , i finnaly did it =]] can someone help me make them join a clan ?
  12. hello thanks for trying to help mate , i am not programmer / developer , but i think problem is not there because i get same problem when i try //recall the fakeplayer .. just when they die and go town (to village) , they spawn correctly ... if i try to teleport them any other way they go to location but become invisible at all.. i am still searching for someone that i can pay for this service
  13. very thank you guys !! i only tried this if (party.getMembers().stream().filter(k -> k.getClassId() == (ClassId.CARDINAL)).count() >= 2) is working fine thx
  14. Hello i try to make maximum 2 healers allowed in 1 party but im getting some problems maybe can someone help me ? i added this lines to requestjoinparty but is not working properly if (target.getClassId().getId() == 97 && (party.getMembersCount() >= 2) ) { requestor.sendMessage("Maximum 2 healers are allowed in party !"); return; }
  15. can anyone help me how to make maximum 2 healers/titan in party ?? i added this to requestjoinparty if (target.getClassId().getId() == 113 ) { requestor.sendMessage("Maximum 2 titans are allowed in party !"); return; } but when i have party with 2 duelist for example and i try to invite 1 titan i can't ..
  16. i think you need to go to each buff in xml/skills folder fiind this <set name="target" val="TARGET_ONE"/> and change in this <set name="target" val="TARGET_PARTY"/> tell me if works
  17. you can't blame one person for evolution brother.. im still looking for a developer that can do this
  18. Hello mxc , im new to java i have 2 months , i can't do nothing from scrath but is not that hard to edit , so i tought why not make elfocrash robots to go tvt .. so first i tryed to make them register tvt , i found in voice command .register this: public boolean useVoicedCommand(String command, Player activeChar) { if (command.equals("register")) EventManager.getInstance().registerPlayer(activeChar); else if (command.equals("leave")) EventManager.getInstance().removePlayer(activeChar); return true; } so i go to fakeplayers and searched where i can add this: "EventManager.getInstance().registerPlayer(activeChar);" i found this: if (isInsidePeaceZone(this, this.getTarget())) { return; } and made it look like this if (isInsidePeaceZone(this, this.getTarget())) { EventManager.getInstance().registerPlayer(this); return; } now if they are in town , they are registering to event (remember im not programmer , i never did something from scrath ) , so everything was fine until i was teleported to event location , but they were all invisible , i tryed alt+g to teleport to them , they were walking , but they are all invisible .. so i guess it didin't work well.. after this i checked to make //recall (charname) on fakeplayer to check if this works , so i tryed recall one from aden to giran , i had same problem , they were there but invisible somehow... after this i check that when they die , they are teleporting to nearest village so i found this protected void teleportToLocation(int x, int y, int z, int randomOffset) { _fakePlayer.stopMove(null); _fakePlayer.abortAttack(); _fakePlayer.abortCast(); _fakePlayer.setIsTeleporting(true); _fakePlayer.setTarget(null); _fakePlayer.getAI().setIntention(CtrlIntention.ACTIVE); if (randomOffset > 0) { x += Rnd.get(-randomOffset, randomOffset); y += Rnd.get(-randomOffset, randomOffset); } z += 5; _fakePlayer.broadcastPacket(new TeleportToLocation(_fakePlayer, x, y, z)); _fakePlayer.decayMe(); _fakePlayer.setXYZ(x, y, z); _fakePlayer.onTeleported(); _fakePlayer.revalidateZone(true); } and this : public FakePlayer spawnPlayer(int x, int y, int z) { FakePlayer activeChar = FakeHelpers.createRandomFakePlayer(); World.getInstance().addPlayer(activeChar); handlePlayerClanOnSpawn(activeChar); activeChar.spawnMe(x, y, z); activeChar.onPlayerEnter(); if (!activeChar.isGM() && (!activeChar.isInSiege() || activeChar.getSiegeState() < 2) && activeChar.isInsideZone(ZoneId.SIEGE)) activeChar.teleToLocation(TeleportType.TOWN); activeChar.heal(); return activeChar; } so i guess that solution is somewhere here: _fakePlayer.broadcastPacket(new TeleportToLocation(_fakePlayer, x, y, z)); _fakePlayer.decayMe(); _fakePlayer.setXYZ(x, y, z); _fakePlayer.onTeleported(); _fakePlayer.revalidateZone(true); i go to eventmanager again i found this: protected void start() { state = EventState.TELEPORTING; announce("The registrations have closed. The event has started.", true); announce("You will be teleported in 20 seconds. Get ready!", false); preparePlayers(); schedule(() -> teleportPlayers(), 20); } and this : protected void teleportPlayers() { state = EventState.RUNNING; if (!teams.isEmpty()) for (EventTeam team : teams) team.teleportTeam(); else for (Player player : players) player.teleToLocation(getRandomLocation(), 40); paralizePlayers(); announce("You have been teleported to the event.", false); announce("The event will begin in 20 seconds!", false); schedule(() -> begin(), 20); } now , im far by knowing java programming , but my intuition tell me that i need to add something like "fakeplayer.revalidatezone" here but i really dont know how , that why i came here to ask you guys for help ? Im not here for beg i can send you guys via paypal money for a beer if you know what i mean (10-20)E.
  19. L2Erica Interlude PvP Server 5000xGrand Opening 19-04-2020 Custom ServerSafe +8 Max +18 / Blessed Scroll 100% to +14 (fail lose only scroll)/ Golden Scroll 70%(fail lose only scroll)Special RaidBosses instaces and Party Zone / Farm ZoneTitanium Armor,Dinasty Armor,Dusk Weapons,Special Acessories️️️️️️️ International communityView more at: http://www.l2erica.net (download patch 300MB)Join Discord https://discord.gg/uAFUu8F...::::::::::: GENERAL INFORMATION :::::::::::...Starting Level - 80 [PVP SERVER]Starting subclass level - 80Maximum subclasses - 5Noblesse last-hit barakiel or buy with farm tokenMAXIMUM CLAN SLOTS: 52 No alliance.CLAN SKILLS OBTAINABLE BY SLAYING SPECIAL RAID BOSS...::::::::::: ENCHANT SERVER :::::::::::...Safe Enchant = +8Max Enchant Blessed = +14 Max Enchant Weapon = +18Max Enchant Armor AND Jewels = +18Scroll Enchant = 80% failed crystalize itemBlessed Enchant = 80% max = +14 failed lose only scrollGolden Enchant(+14 to -18) = 55% failed lose only scroll...::::::::::: SYSTEMS :::::::::::...Olympiads retail items with max ench +6Castle Siege every week ONLY GIRAN,RUNE,ADENDAILY LOGIN REWARD(24H)Flawless Geodata & PathnodesOlympiad Games Retail like (with some custom restrictions).offline / .menuDressing system Assasin/Killer/Beleth/Dark/Draconic/AnakimVote buff added(Def/HP/Patk)ANTI-BOT CAPTCHA SYSTEMTOP PVP/PK MONUMENT SPAWNED IN MAIN TOWNParty Matching & Boss HuntingSee all the parties in in our server live, and ask leader to join them, by a just single button ''Party request''.AUGMENTER SHOP (PARTY AREA DROP AUGMENT COINS)MAXIMUM 1 ACTIVE / 1 PASSIVETo make the game easier and more enjoyable for both the solo and clan playerswe have created Instanced Dungeons which you can enter 12 hoursIf you fail to complete the dungeon you cannot re-enter until next reset at 18:00 UTC +3Donation Coins can be farmed in-game to keep fairplayRune Power Manager(Rune Pages drop at PT ZONE/BOSSES)(WIZZARD/HUNTER/TANK/SNIPER/BLESSED/WILD MAGIC) upgradeble up to level 10 , there are 6 different runes and can use only one at a time....::::::::::: CUSTOM ITEM :::::::::::...Titanium Armor obtainable by slaying bosses(100% chance)(+5-10% better than DRACONIC/IMPERIAL/DARK CRYSTAL)Jade Armor Armor obtainable by farming coins(+5% better by DRACONIC/IMEPRIAL/DARK CRYSTAL)Dinasty Armor obtainable by slaying bosses(20% chance)(+10-15% better than DRACONIC/IMPERIAL/DARK CRYSTAL)Accesories added as special hats (+100 Pdef/Mdef)Dusk Custom Weapons obtainable by slaying bosses(+5-10% better than retail weapons)Olympiad retail only , max enchant +6...::::::::::: AREAS DROP :::::::::::...There are 5 different party areas:Ol Mahum Checkpoint/Pagan Temple/Wasteland/Abandoned Camp/Fields of SillencePARTY ZONE AVAILABLE BETWEEN 17:30 - 24:00 (GMT +2)PARTY ZONE CHANGING EVERY DAYPVP AREAS changing every hourIn order to have a fair gameplay we added donate coins drop at Champions/Bosses/Party Zone(5-20% drop rate)14 special Raid Bosses with great drops designed for best pvp/war experience!Erica Astral Spirit(respawn every 7h)Hestia Guardian,Ketra Hero Hekaton,Ketra Commander Tayr,Varka Hero Shadith,Varka Commander Mos,Varka Chief Horus,Flame Splendor Barakiel,Demon's Agent Falston,Einhalder von Hellman,Lilith,Anakim(respawn every 30-50 minutes)
  20. hello guys , im looking for a dev to add in source announce pvp/pk + zone im willing to pay
  21. im starting gamesrver/loginserver in my local pc works perfectly fine , but when i try on vps server i get this error all time Starting GVBITS AuthServer. [INFO][19:33:49] - |==================[SYSTEM INFORMATION]=================| [INFO][19:33:49] - | OS: Windows Server 2012 R2 Build: 6.3 [INFO][19:33:49] - | OS Arch: amd64 [INFO][19:33:49] - | Avaible CPU(s): 1 [INFO][19:33:49] - | Processor(s) Identifier: Intel64 Family 6 Model 60 Stepping 1, GenuineIntel [INFO][19:33:49] - | Process ID: 1088 [INFO][19:33:49] - | JMV: Java HotSpot(TM) 64-Bit Server VM Build: 1.8.0_241-b07 [INFO][19:33:49] - |=======================================================| [INFO][19:33:50] - Loaded 127 server names [ERROR][19:33:50] - Property #-------------------------------------------- ----------------- does not exist on target class com.zaxxer.hikari.HikariConfig [WARN][19:33:50] - Could not init database connection. java.lang.RuntimeException: Property #------------------------------------ ------------------------- does not exist on target class com.zaxxer.hikari.Hikar iConfig at com.zaxxer.hikari.util.PropertyElf.setProperty(PropertyElf.java:131) at com.zaxxer.hikari.util.PropertyElf.lambda$setTargetFromProperties$0(P ropertyElf.java:57) at java.util.Hashtable.forEach(Unknown Source) at com.zaxxer.hikari.util.PropertyElf.setTargetFromProperties(PropertyEl f.java:52) at com.zaxxer.hikari.HikariConfig.loadProperties(HikariConfig.java:1067) at com.zaxxer.hikari.HikariConfig.<init>(HikariConfig.java:148) at ru.gvbits.commons.db.AbstractDataBaseFactory.initPool(AbstractDataBas eFactory.java:27) at ru.gvbits.authserver.AuthServer.<init>(AuthServer.java:39) at ru.gvbits.authserver.AuthServer.main(AuthServer.java:86) [INFO][19:33:50] - Checking database: ........ Exception in thread "main" org.flywaydb.core.api.FlywayException: Unable to conn ect to the database. Configure the url, user and password! at org.flywaydb.core.internal.configuration.ConfigurationValidator.valid ate(ConfigurationValidator.java:34) at org.flywaydb.core.Flyway.execute(Flyway.java:408) at org.flywaydb.core.Flyway.migrate(Flyway.java:153) at ru.gvbits.commons.dbutils.DatabaseInstaller.start(DatabaseInstaller.j ava:23) at ru.gvbits.authserver.AuthServer.<init>(AuthServer.java:41) at ru.gvbits.authserver.AuthServer.main(AuthServer.java:86) Server terminated abnormaly ... Server terminated ... Press any key to continue . . . i was thinking that is a permission problem , i checked all users permision everything but look like is not that the problem or maybe im not looking where need to look //edit i saw that when i open gameserver/loginserver on local pc it generates auto database from sql folder , on vps windows server 2012 it might be a read-only attribute problem but how can i disable it ?
  22. can you add in game voice over ip ? talking microfone with clan / party members ?
  23. Helllo im looking to buy interlude l2j pack with custom modifications + phantom players or roboto players engine added.
  24. I want to buy server pack with l2phantom bots or elfocrash engine bots installed + source... is here someone who can add voice over ip in game ? like interface editing for no longer using discord but talk on game via microfone with party members or clan/ally ? im looking forward for pms or email turcu_l2@yahoo.com
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock