Thread: Missing Values!
View Single Post
  #1  
Old 10-19-2006, 06:13 AM
Novo Novo is offline
[TServerDeveloper]
Join Date: Jun 2006
Posts: 448
Novo will become famous soon enough
Missing Values!

PHP Code:
function onCreated()
  {
  
this.string = new TStaticVar();
  
this.string."1-0";
  
this.string.savevars"docu/test.arc");
  
this.ss.loadvars"docu/test.arc" );
  echo( 
this.ss.);
  } 
this.ss.t = 1

Summary: When saved by savevars, strings which compose only of numbers and a hypen, the string before the hyphen is what returns.
"1000-1" => "1000", "2-3" => 2, ... ...
Reply With Quote