View Single Post
  #1  
Old 03-10-2010, 08:53 AM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
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.
Reply With Quote