I want to make a handy script that warps a player out of an event if they log off. The only problem is that I cannot manipulate the player's level offline.
PHP Code:
function onPlayerLogout() {
if(player.level.name == "s64club_pacman_event.nw") {
player.setLevel2("shangri_sky.gmap",30,30); //This will not work because it's an offline player
}
}