The following warnings occurred:
Warning [2] Use of undefined constant SAPI_NAME - assumed 'SAPI_NAME' (this will throw an Error in a future version of PHP) - Line: 3388 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3388 errorHandler->error
/showthread.php 116 build_archive_link
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/inc/functions.php 3324 build_forum_breadcrumb
/showthread.php 195 build_forum_breadcrumb
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/showthread.php 195 build_forum_breadcrumb
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 786 - File: showthread.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/showthread.php 786 errorHandler->error






Post Reply 
 
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



Post: #1
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
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Messages In This Thread
Help with <LINK> on a Death System - gergecoelho - 08-03-2019 09:56 AM

Forum Jump:


User(s) browsing this thread: 1 Guest(s)