Search the Community
Showing results for tags 'Mobs'.
-
I want to ask your help mxc, if there are still ppl who's able to help pls respond. I want to change 'champion mobs' something like this.... Well it's hard to write my English is not full yet... That what I want >>> BOSS (LVL 1) after death BOSS (LVL 2) after death BOSS (LVL 3) and so on till lvl 20. I hope you guys get it what I mean and if you can help me.. I don't mean full Java code (I think I have to make it in Java) just some part of it as example (l2jfrozen 1.5). 🙏🙏
-
Hi guys. Short question. How could I disable the champion spawn for certain monsters with a certain title? The monster type is L2Monster, and the title is MonsterSpawn. Would it be possible to exclude these mobs to be transformed into a champion mob? if (Config.L2JMOD_CHAMPION_ENABLE) { // Set champion on next spawn if (!(this instanceof L2GrandBossInstance) && !(this instanceof L2RaidBossInstance) && !(this instanceof L2ChestInstance) && !(getTemplate().title.contentEquals("MonsterSpawn") && (this instanceof L2Monst
-
Help How We Can To Delete The Normal Npcs And Mobs?
rlfem123 posted a question in Request Server Development Help [L2J]
How we can to delete the normal npcs and mobs? I mean all normal npcs without our custom npcs?I tried a few times to delete npcs from xml files on acis but when i started a server give me error. The system searching their npcs and etc. What i can do in my case? -
Kalhspera exw ena provlima vazw geodata ston server kai otan varaw ena teras kai paw piso apo ton toixo to varaw alla ayto den me varaei na ta config tou geodata # -------------------------------- # Geo Configuration - # -------------------------------- # 0 = geodata disabled (default). # 1 = enabled geodata. # If ForceGeodata = true, it requires ~ 3 GB # If ForceGeodata = false, then the required rate of screws 7200 # # 2 = geodata and patchnod (search path) are included. # If ForceGeodata, ForcePathNod = true, it requires about 5 GB # If ForceGeodata, ForcePathNod = false, then the requi
-
Hello, I've got l2j acis 320rev(I think).At first I thought I fucked up source code so it doesn't give any experience,then I replaced my server files with totally new ones and it gave no result.Then I replaced database and still no result.So there I am with totally original files and mobs don't give me any experience.Do you guys know what the problem could be? I didn't use mmo_core files as I don't know what they do.So maybe you could answer this one for me? ^_^ Could it have to do something with java version?Because I am using jre7 and it says something about not showing annotations,because i
- 5 replies
-
- acis
- no experience gain
-
(and 2 more)
Tagged with:
-
Help Core Side - Mobs Respawn Time
Meikis posted a question in Request Server Development Help [L2J]
Hello, I'm spawning mobs from the core side, using code like: L2MonsterInstance mob = new L2MonsterInstance(IdFactory.getInstance().getNextId(),NpcTable.getInstance().getTemplate(21425)); mob.setHeading(0); mob.setCurrentHpMp(mob.getMaxHp(), mob.getMaxMp()); mob.spawnMe(x, y, z); but after killing this mob it is not respawning, it's possible to set respawn time in this way? Or I should make script and set respawn time in onKill() method?