XuN 
Sphere Developer
    
Posts: 852
Likes Given: 102
Likes Received: 156 in 119 posts
Joined: Jul 2013
Reputation: 30
![]()
|
RE: differencing races?
Using a function returning a value inside a trigger will not stop the trigger, imagine the hardcoded function <NAME> as this
Code:
[FUNCTION NAME]
return character_name
Every function returns a value, but this value will represente the called function and will not alter the trigger/function's behaviour.
Code:
ON=@Any_Trigger
local.race=<race> //this won't stop the trigger since the return is in the [function race]
local.name=<name> // this won't stop the trigger for same reason for name function
local.your_something=<tag.something> //this won't stop the trigger for the same reason with the tags
return <eval <local.race>+<local.something>> //this will return the trigger since you are using the return directly
|
|
06-10-2014 06:55 AM |
|
The following 1 user Likes XuN's post:1 user Likes XuN's post
Extreme (06-10-2014)
|