View Single Post
  #1  
Old 05-12-2013, 09:46 PM
baseman101 baseman101 is offline
Scripter
baseman101's Avatar
Join Date: Nov 2012
Location: Purcellville, VA
Posts: 76
baseman101 will become famous soon enough
Setting Offline Player's Level

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
  
}

Reply With Quote