I need some help again. I'd like to create a farm zone.
I think the best to do it in an instace with a limited time, but i dont really know how is it working.
I find GoldBergsRoom to be a good place form me. I made a copy from the .xml and also the script.
I changed some conditions, i hope its ok.
The spawnlist is the default. If i made a list in here its working? I mean do the mobs respawn in to zone again until time ends?
I deleted some unused lines from script but is thinks its not correct.
So im just want a zone where mobs spawn for 60 minutes then player teleported out and can re-enter after 180.
/*
*
* 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
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package instances.BeerFarm;import org.l2j.gameserver.model.Party;import org.l2j.gameserver.model.actor.Npc;import org.l2j.gameserver.model.actor.instance.PlayerInstance;import org.l2j.gameserver.model.instancezone.Instance;import org.l2j.gameserver.network.serverpackets.ExShowScreenMessage;import instances.AbstractInstance;publicclassFarm extends AbstractInstance{// NPCsprivatestatic final intBlack=34091;// Items// Miscprivatestatic final int TEMPLATE_ID =900203;publicFarm(){
super(TEMPLATE_ID);
addStartNpc(Black);
addInstanceLeaveId(TEMPLATE_ID);}@OverridepublicString onAdvEvent(String event,Npc npc,PlayerInstance player){switch(event){case"ENTER":{
enterInstance(player, npc, TEMPLATE_ID);
final Instance world = player.getInstanceWorld();if(world !=null){for(PlayerInstance member : party.getMembers()){if(member == player){continue;}
member.teleToLocation(player,10, world);}}break;}}returnnull;}publicstaticvoid main(String[] args){newFarm();}}
🤣
You were talking about security — I want you to prove that it's actually insecure, try to hack it or something.
You're just talking without any evidence, and that's not right.
Without the personal key that's generated for each site, you can't do anything. And by the way, boberKurwa isn't even used — it's a joke, and you totally fell for it.
You're being very unconstructive.
I appreciate criticism based on facts, and here's a fact: Sphere 2 has been running publicly since October, and there haven't been any successful hacking attempts.
If you doubt that, go ahead and prove me
wrong.
When a conversation loses its direction and turns into pointless justifications, maybe the problem isn't who's right it's who's insecure. The phrase "there is nothing for me to prove" shows confidence or indifference. But let’s look at it in PHP.
class Logan22 {
public bool $hasSomethingToProve = false;
public string $communicationMode = 'normal';
public bool $usesChatGPT = false;
public function respond(string $input): string {
if (str_contains($input, 'prove')) {
return "I have nothing to prove.";
}
if (str_contains($input, 'defensive')) {
$this->communicationMode = 'defensive';
return "You got defensive – did something feel threatening?";
}
if (str_contains($input, 'ChatGPT')) {
$this->usesChatGPT = true;
return "Yes, I use it for speed, accuracy, and because my spelling sucks.";
}
return "What did you just say again?";
}
}
You wrote complete nonsense. Everything you said is utter rubbish from someone who doesn’t understand a thing.
As for the ticking time bomb — go ahead and try to prove it. No one has managed so far, and trust me, there’ve been plenty of “smart guys” before you.
Question
Ilusioner
Hi!
I need some help again. I'd like to create a farm zone.
I think the best to do it in an instace with a limited time, but i dont really know how is it working.
I find GoldBergsRoom to be a good place form me. I made a copy from the .xml and also the script.
I changed some conditions, i hope its ok.
The spawnlist is the default. If i made a list in here its working? I mean do the mobs respawn in to zone again until time ends?
I deleted some unused lines from script but is thinks its not correct.
So im just want a zone where mobs spawn for 60 minutes then player teleported out and can re-enter after 180.
My xml:
and this is my script:
2 answers to this question
Recommended Posts