View Single Post
  #4  
Old 08-11-2011, 04:58 AM
Ignorance
Fire Beetle
 
Join Date: Jun 2006
Location: baconland
Posts: 14
Default

It turns out that the const char requirement of settimer() was causing the issue.
Code:
quest::settimer( $timerID, $timerID );   # Does not work
quest::settimer( "$timerID", $timerID ); # Works
Reply With Quote