Much, but thank you so much Yisc !
The LFSLapper no more restarts , it will only just one problem !
The Feedback on chat , this is not showing up = (
See the placement of codes is actually correct please? ^ _ ^
###################################
#Event triggered when lapper start#
###################################
Sub DisplaySpeed( $userName )
PrivMsg( langEngine( "%{main_speedtrap}%" , ToPlayerUnit( GetCurrentPlayerVar( "InstantSpeed" ) ),GetCurrentPlayerVar("UnitSpeed") ) );
EndSub
Sub ExitDisplaySpeed( $userName )
PrivMsg( "Exiting of displaySpeed" );
EndSub
Event OnLapperStart()
#RegisterScheduleAction( "0 0 0 * * * *", SA_mid );
#RegisterScheduleAction( "0 0 0 * 1 1 *", SA_newyear );
#RegisterNodeAction( "BL1" , 140 , DisplaySpeed,ExitDisplaySpeed );
#RegisterNodeAction( "BL1R" , 245 , DisplaySpeed,ExitDisplaySpeed );
#RegisterZoneAction( "BL1" , -60,106, 5 , DisplaySpeed,ExitDisplaySpeed );
RegisterZoneAction( "AU1" , 22,-773, 1 , SA_ConeScrape1,"" );
EndEvent
Sub SA_ConeScrape1() # Lapper Event
globalMsg( GetCurrentPlayerVar("NickName") . "has passed the zone" );
EndSub
Sub SA_mid() # Lapper Event
globalRcm( langEngine( "%{main_midnight}%" ) );
EndSub
Sub SA_newyear() # Lapper Event
globalRcm( langEngine( "%{main_newyear}%" ) );
EndSub
Event OnButtonFunction($userName, $SubT) # Player Event When Player push shift+I or Shift+B
# DEBUG ("Button SubT for " . $userName . " is " . $SubT);
EndEvent