View Single Post
  #4  
Old 07-26-2013, 09:58 PM
BlueMelon BlueMelon is offline
asdfg
BlueMelon's Avatar
Join Date: Sep 2008
Posts: 1,481
BlueMelon is a splendid one to beholdBlueMelon is a splendid one to beholdBlueMelon is a splendid one to beholdBlueMelon is a splendid one to behold
I just tried this on my pc:# account,

PHP Code:
function onCreated() {
  
temp.pl findplayer("pc:10610964");
  
temp.pl.clientr.testclear "abcdefg";
  echo(
"Before: " temp.pl.clientr.testclear);
  echo(
"Size Before: " temp.pl.clientr.getDynamicVarNames().size());
  
temp.pl.clientr.clearVars();
  echo(
"After: " temp.pl.clientr.testclear);
  echo(
"Size After: " temp.pl.clientr.getDynamicVarNames().size()); 

Quote:
Originally Posted by Output
Before: abcdefg
Size Before: 9
After:
Size After: 0
__________________
http://i.imgur.com/OOJbW.jpg
Reply With Quote