Quote:
Originally Posted by zmd94
Just try to change that part with this code:
PHP Code:
public SayPoints(id) { ColorChat(id, GREY, "^4*^3 You have ^4%s^3 Points -^3 [^4v%s^3]", Points[id] , VERSION); }
|
Edit: It still does the samething
Changed
PHP Code:
public SayPoints(id)
{
ColorChat(id, GREY, "^4*^3 You have ^4%s^3 Points -^3 [^4v%s^3]", Points[id] , VERSION);
}
to
PHP Code:
public SayPoints(id)
{
ColorChat(id, GREY, "^4*^3 You have ^4%i^3 Points -^3 [^4v%s^3]", Points[id] , VERSION);
}
__________________