Quote:
Originally Posted by theHAWKER
I have an online tile editor that i want to be only usable when your in thies 4 rooms. It works with one room but not with 4:
PHP Code:
if ( weaponfired ) { if (strequals(#L,room1.nw||#L,room2.nw||#L,room3.nw||#L,room3.nw)) {
|
PHP Code:
if ( weaponfired ) {
if (strequals(#L,room1.nw) || strequals(#L,room2.nw) || strequals(#L,room3.nw) || strequals(#L,room3.nw)) {
}
}
[/QUOTE]