again what are some basic scripts

[BUG] Buggi
Joined 28/12/2017
Posts 74
01:45 PM 02/12/2018
just basic ones


[PD] Illusionism
Joined 23/01/2019
Posts 245
12:21 AM 29/01/2019
an arguably necessary one is a respawn if you fall off the edge script:

respawn = '
with obj_client {
if(id.zPos < -100) {
playerRespawn(id)
}
}
schedule(0,respawn)
';

execute_string(respawn)

1