View Single Post
  #3  
Old 08-09-2010, 06:23 PM
sssssssssss sssssssssss is offline
Cyril Rain
sssssssssss's Avatar
Join Date: May 2003
Location: Texas, USA
Posts: 1,134
sssssssssss will become famous soon enough
Not seein what I'm doin wrong, but player.chat ="fadeout" and echo will not happen


PHP Code:
function onCreated() {
  
this.levelfade "armageddon-spar-main";
}
function 
onPlayerLeaves() {
  if (
player.level.starts(this.levelfade)) {
    
triggerClient("gui"name"leftScreen");
    echo(
"fade out");
  }
}
//#CLIENTSIDE
function onCreated() {
  
this.levelfade "armageddon-spar-main";
}
function 
onActionClientSide() {
  if (
params[0] == "leftScreen") {
    
player.chat "fade out";
  }
}
function 
onPlayerEnters() {
  if (
player.level.starts(this.levelfade)) {
    
player.chat "fade in";
  }

__________________
Cyril Rain
Creator and leader of SLX
Admin of Elysium
Elysium's Facebook Page: http://facebook.com/GraalOnlineElysium
Graal Forum Thread: http://forums.graalonline.com...
Graalians Thread: http://www.graalians.com...



Last edited by sssssssssss; 08-09-2010 at 06:53 PM..
Reply With Quote