Page 1 of 1

Labyrinth Obelisks

PostPosted: Sun Feb 05, 2017 2:04 am
by Fulmine
There is an old code from few years ago of Labyrinth Obelisks.
The code create automatically all obelisks in the labyrinth, it's working like on official server, but I didn't implement the anti-camp system for now. Maybe one day... or feel free to edit.

Re: Labyrinth Obelisks

PostPosted: Sun Feb 05, 2017 10:14 am
by Leodagan
Hello Fulmine,

Would you mind explaining the game mechanisms of official server's Obelisks ?

I never played Laby on Live and I'm curious if I can bring this script to DOL with missing anti-camp implementation... (It's pretty hard to find knowledge about DAOC features in 2017...)

Re: Labyrinth Obelisks

PostPosted: Sun Feb 05, 2017 11:04 am
by PlanarChaosRvrtwo
The stones work this way you run into laby and need activate obelisk by click it by that you can click any obelisk and activated obelisks show white name of other obelisks and you can click em to port that loc others appear grey till you activated em by clicking em

Re: Labyrinth Obelisks

PostPosted: Sun Feb 05, 2017 11:39 am
by HunabKu
Memories ^^
I fixed that after Myrddin closed, with character validation.
I don't know if i have it again.

Re: Labyrinth Obelisks

PostPosted: Sun Feb 05, 2017 12:53 pm
by Fulmine
PlanarChaosRvrtwo has pretty much explains everything. The anti-camp system prevents players to wait for others player by staying nearby of the obelisks, maybe a radius of 200 or 300. Don't remember well. About 5~10 secs a lightning strike the player doing some damage and repeat every 3 ~ seconds

Re: Labyrinth Obelisks

PostPosted: Sun Feb 05, 2017 2:36 pm
by PlanarChaosRvrtwo
The radius is 250

Re: Labyrinth Obelisks

PostPosted: Thu Sep 14, 2017 12:21 am
by Batlas
I wanted to play around with this, and kind of have something if anyone is still interested.
Code: Select all
/*
* DAWN OF LIGHT - The first free open source DAoC server emulator
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;

using DOL.Events;
using DOL.GS;
using DOL.GS.Effects;
using DOL.GS.Movement;
using DOL.GS.PacketHandler;
using DOL.GS.SkillHandler;
using DOL.GS.Keeps;
using DOL.Language;
using log4net;

namespace DOL.AI.Brain
{
public class GameObeliskBrain : StandardMobBrain
{

public List<GamePlayer> playersWarned = new List<GameLiving>();

public int attackTimerInterval = 3000;
public int attackDelayInterval = 30000;

protected Random m_random = new Random();

public GameObeliskBrain()
: base() {
m_aggroLevel = 0;
m_aggroMaxRange = 250;
}


public override int ThinkInterval {
get { return 3000; }
}

public override void Think() {


var currentPlayersSeen = new List<GamePlayer>();
foreach (GamePlayer player in Body.GetPlayersInRadius((ushort)AggroRange, true)) {

string obeliskWarning = "The air is thick with currents of elemental energy flowing from the nexus rift at the base of the Obelisk. ";
obeliskWarning += "This area is not safe to linger in.";
player.Out.SendMessage(obeliskWarning, eChatType.CT_Say, eChatLoc.CL_ChatWindow);

if (!playersWarned.Contains(player)) {
playersWarned.Add(player);
attackTimer = new RegionTimer(Body, new RegionTimerCallback(obeliskAttackTimerCallback), attackDelayInterval);
attackTimer.Properties.setProperty("gamePlayer",player);
}



currentPlayersSeen.Add(player);

for (int i=0; i<playersWarned.Count; i++)
{
if (!currentPlayersSeen.Contains(playersWarned[i])){
playersWarned.RemoveAt(i);
}
}
}

return;
}

public function obeliskAttackTimerCallback(RegionTimer callingTimer){

GamePlayer player = callingTimer.Properties.getProperty("gamePlayer");
if (player && playersWarned.Contains(player)){
int damage = m_random.Next(120,170);

string obeliskDamage = "Lightning strikes you from the ceiling! It flows into the nexus rift at the base of the Obelisk of Nurizane.";
obeliskDamage += "You should leave the area immediately if you wish to avoid further damage.";

string damageMessage = "The nexus rift lighting hits you for "+damage+" damage.";
player.Out.SendMessage(damageMessage, eChatType.CT_YouWereHit, eChatLoc.CL_ChatWindow);
player.ChangeHealth(player,ChangeHealth.Unknown,damage);
attackTimer = new RegionTimer(Body, new RegionTimerCallback(obeliskAttackTimerCallback), attackTimerInterval);
attackTimer.Properties.setProperty("gamePlayer",player);
}
}
}
}
Things to note:

Does not check for pets, I didn't feel like writing the logic for that, but it would be pretty easy to implement.

It doesn't actually handle the "attack". I would assume that the way live handles it is having an invisible mob named nexus rift lighting that has the same radius (250), and then you get manually added to it's aggrotable when you reach 30 seconds.

There is no spell animation. I thought about writing a db insert for it, but since I'm not actually "attacking" the player, I skipped it.

I haven't actually tested the code. I don't have a DOL environment up, I was browsing the forums and saw this and it interested me.

To test it, just set the mob brain to GameObeliskBrain and go from there.

Re: Labyrinth Obelisks

PostPosted: Thu Sep 14, 2017 11:15 pm
by Graveen
Hey my friend ! Ty for the code :)

Re: Labyrinth Obelisks

PostPosted: Fri Sep 15, 2017 12:37 am
by Batlas
I told you I got the bug. I may go back and rewrite it to work properly. I think the brain can be easily modified to work on the invisible mob that does the casting. The only change is adding/removing to the aggro table and giving the mob a 3 second lighting/smite spell.

Also, new necros seem pretty cool. Once I understand it more, maybe I can pick that up as a pet project.

Re: Labyrinth Obelisks

PostPosted: Fri Sep 15, 2017 7:02 pm
by Batlas
I thought about my earlier statement, and the way it works right now may be the best way to handle it atm. Adding multiple players to a mobs aggro table, it will only attack 1 player. There are some weird work arounds for that, but I'm not sure what would be the best way of handling it. Spawn in a new mob for every player?

Re: Labyrinth Obelisks

PostPosted: Sun Sep 17, 2017 7:56 pm
by Batlas
Code: Select all
/*
* DAWN OF LIGHT - The first free open source DAoC server emulator
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;

using DOL.Events;
using DOL.GS;
using DOL.GS.Effects;
using DOL.GS.Movement;
using DOL.GS.PacketHandler;
using DOL.GS.SkillHandler;
using DOL.GS.Keeps;
using DOL.Language;
using log4net;

namespace DOL.AI.Brain
{
public class GameObeliskBrain : StandardMobBrain
{

public List<GamePlayer> playersWarned = new List<GamePlayer>();

public int attackTimerInterval = 3000;
public int attackDelayInterval = 30000;

protected Random m_random = new Random();

public GameObeliskBrain()
: base() {
m_aggroLevel = 0;
m_aggroMaxRange = 250;
}


public override int ThinkInterval {
get { return 3000; }
}

public override void Think() {


var currentPlayersSeen = new List<GamePlayer>();
foreach (GamePlayer player in Body.GetPlayersInRadius((ushort)AggroRange, true)) {

string obeliskWarning = "The air is thick with currents of elemental energy flowing from the nexus rift at the base of the Obelisk. ";
obeliskWarning += "This area is not safe to linger in.";
player.Out.SendMessage(obeliskWarning, eChatType.CT_Say, eChatLoc.CL_ChatWindow);

if (!playersWarned.Contains(player)) {
playersWarned.Add(player);
RegionTimer attackTimer = new RegionTimer(Body, new RegionTimerCallback(obeliskAttackTimerCallback), attackDelayInterval);
attackTimer.Properties.setProperty("gamePlayer",player);
}



currentPlayersSeen.Add(player);

for (int i=0; i<playersWarned.Count; i++)
{
if (!currentPlayersSeen.Contains(playersWarned[i])){
playersWarned.RemoveAt(i);
}
}
}

return;
}

public virtual int obeliskAttackTimerCallback(RegionTimer callingTimer){

GamePlayer player = callingTimer.Properties.getProperty<object>("gamePlayer", null) as GamePlayer;
if (player != null && playersWarned.Contains(player)){
int damage = m_random.Next(120,170);

string obeliskDamage = "Lightning strikes you from the ceiling! It flows into the nexus rift at the base of the Obelisk of Nurizane.";
obeliskDamage += "You should leave the area immediately if you wish to avoid further damage.";

string damageMessage = "The nexus rift lighting hits you for "+damage+" damage.";
player.Out.SendMessage(damageMessage, eChatType.CT_YouWereHit, eChatLoc.CL_ChatWindow);
player.ChangeHealth(player,DOL.GS.GameLiving.eHealthChangeType.Unknown,damage);
RegionTimer attackTimer = new RegionTimer(Body, new RegionTimerCallback(obeliskAttackTimerCallback), attackTimerInterval);
attackTimer.Properties.setProperty("gamePlayer",player);
}

return 0;
}
}
}
Now that I have #dev, I took some time and decided to test this out. There were tons of errors I needed to work through to get this to compile. I have attached the modified version. (I definitely wrote this as if it were a php class originally... lol)