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 spawnif(!(thisinstanceof L2GrandBossInstance)&&!(thisinstanceof L2RaidBossInstance)&&!(thisinstanceof L2ChestInstance)&&!(getTemplate().title.contentEquals("MonsterSpawn")&&(thisinstanceof L2MonsterInstance)&&(Config.L2JMOD_CHAMPION_FREQUENCY >0)&&(getLevel()>=Config.L2JMOD_CHAMP_MIN_LVL)&&(getLevel()<=Config.L2JMOD_CHAMP_MAX_LVL))){
final int random =Rnd.get(100);if(random <Config.L2JMOD_CHAMPION_FREQUENCY){
setChampion(true);}}}
As you can see I tried with the getTemplte.title but I doesn't work.
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
I agree with you, but the milking was out of control. Players just don’t trust anymore. You log into a new server and suddenly need 20 euros just to be somewhat playable. There’s no environment for solo players to enjoy the game, progress, and naturally find friends or form parties.
Most of the people who make servers have either never played the game seriously, or if they did, it was so long ago that they’ve completely lost touch with the player experience.
Not everything is very “professional” with AdvExt64. They mostly just take your money, then ask for more to fix things they can’t even fix properly. I remember years ago they couldn’t even solve the Varka/Ketra quest the problem was in ai.obj 😄
But hey, who knows maybe now they’re ai.obj experts 🙂
Question
stalker66
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?
As you can see I tried with the getTemplte.title but I doesn't work.
Any help or hint would be great. Thanks!
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.