View Single Post
  #4  
Old 12-22-2004, 11:28 PM
Lance Lance is offline
dark overlord
Lance's Avatar
Join Date: Sep 2003
Location: Space Jam Mountain
Posts: 5,072
Lance is on a distinguished road
Other than trailing zeroes being ignored, why not do it simply? Here, I'll copy your input format:

NPC Code:
//#CLIENTSIDE
if (playerchats) {
tokenize #c;
if (strequals(#t(0),dp)) {
this.num=strtofloat(#t(1));
this.maxplaces=strtofloat(#t(2));
this.newnum=int(this.num * 10^this.maxplaces + 0.5) / 10^this.maxplaces;
setplayerprop #c,#v(this.newnum);
}
}

Reply With Quote