mirror of
https://github.com/stevenhowes/CTheEscape.git
synced 2026-05-26 15:53:29 +01:00
Allow event actions to change overlay tiles
This commit is contained in:
@@ -74,6 +74,17 @@
|
||||
$eventactions[] = array("Event"=>$inevent,"Action"=>0,"ActionValue"=>$csv[1],"ActionTarget"=>$csv[0]);
|
||||
}
|
||||
break;
|
||||
case "SetOverlayTile":
|
||||
if($inevent < 0)
|
||||
{
|
||||
echo " Invalid outside event\n";
|
||||
}
|
||||
else
|
||||
{
|
||||
$csv = str_getcsv($split[1]);
|
||||
$eventactions[] = array("Event"=>$inevent,"Action"=>5,"ActionValue"=>$csv[1],"ActionTarget"=>$csv[0]);
|
||||
}
|
||||
break;
|
||||
case "ReArm":
|
||||
if($inevent < 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user