
03-10-2010, 08:53 AM
|
|
Will work for food. Maybe
|
 |
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
|
|
new TServerPlayer() and a few bugs
|
First off, it's case sensitive. This is a bad thing. Especially since the player tends to be offline, there is no way to get the proper case for their account.
Secondly, it seems it does not properly support variables:
temp.pl = new TServerPlayer("DustyPorViva");
Works.
temp.a = "DustyPorViva";
temp.pl = new TServerPlayer(temp.a);
Does not.
temp.a = "DustyPorViva";
temp.pl = new TServerPlayer((@temp.a));
Does work, however. |
|
|
|