forked from 2009Scape/Server
9 lines
173 B
Text
9 lines
173 B
Text
string script_780(int arg0) {
|
|
if (arg0 >= 999999) {
|
|
return "*";
|
|
}
|
|
if (arg0 >= 10000) {
|
|
return concat(intToStr(divide(arg0, 1000)), "K");
|
|
}
|
|
return intToStr(arg0);
|
|
}
|