Thread Rating:
- 0 Votes - 0 Average
- 1
- 2
- 3
- 4
- 5
Help with <LINK> on a Death System
|
Author |
Message |
gergecoelho
Apprentice
Posts: 31
Likes Given: 7
Likes Received: 3 in 3 posts
Joined: Jul 2015
Reputation: 0
|
Help with <LINK> on a Death System
Hello everyone! Can someone help in telling me what am I doing wrong in the following event system?
My objective is to have the character be teleported to an "Unconscious Room" while dead, then be teleported back to where they were reduced to 0 hit points.
However, I had to change it a bit when I remembered that someone could drag a corpse from the location it was reduced to 0 in (via a .drag command I've made available), so the ghost would resurrect without the body.
I'm having trouble using the LINK to find where the body is being moved to.
Code:
[EVENTS e_death_system]
ON=@Death
SRC.TAG.VIGOR -= 1
SRC.TAG.DOWNLOCATION = <SRC.P>
IF (<SRC.TAG.VIGOR> <= 0)
SRC.SYSMESSAGE=You have died, only the higher powers can help your soul now.
ELSE
SRC.SYSMESSAGE=You are unconscious and will wake up in 2 minutes.
SRC.NEWITEM i_unconscious_timer
SRC.EQUIP <NEW>
ENDIF
ON=@DeathCorpse
SRC.LINK=<ARGO>
SRC.GO = 5585,1085 // The "Unconscious Room"
ON=@Resurrect
SRC.GO=<LINK.P>
[ITEMDEF i_unconscious_timer]
ID=i_memory
TYPE=t_eq_script
NAME=Unconscious Timer
LAYER=layer_special
ON=@CREATE
ATTR=00014
ON=@Equip
TIMER=2*60
ON=@Timer
// CONT.GO = <CONT.TAG.DOWNLOCATION>
CONT.RESURRECT
CONT.SYSMESSAGE = You woke up.
REMOVE
RETURN 0
|
|
08-03-2019 09:56 AM |
|
|
User(s) browsing this thread: 1 Guest(s)