View Single Post
  #3  
Old 09-30-2006, 04:31 AM
ZeroTrack ZeroTrack is offline
G2K1 Developer
ZeroTrack's Avatar
Join Date: Apr 2004
Location: LongIsland, NY
Posts: 402
ZeroTrack is on a distinguished road
Send a message via AIM to ZeroTrack
Quote:
Originally Posted by projectigi View Post
hrm, is this only serverside?
or how do i use it right, i tried it clientside, used at the start of the onTimeout thing =/ onwall2() still recognizes players as walls
Nice place for save to come in handy again

PHP Code:
function onPlayerEnters(){
  if(
noplayeronwall()) save[0] = 1//True
    
else save[0] = 2//False
}

//#CLIENTSIDE
//Run through your checks again and setTimer
function onTimeout(){
  if(
save[0] == 1//do true statement here
    
else // do false statement here

__________________

Reply With Quote