mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2025-12-09 16:45:44 -07:00
12 lines
177 B
Text
12 lines
177 B
Text
int script_4975(int arg0) {
|
|
if ((arg0 > 0) && (arg0 < 300)) {
|
|
return 1;
|
|
}
|
|
if ((arg0 > 300) && (arg0 < 600)) {
|
|
return 2;
|
|
}
|
|
if (arg0 > 600) {
|
|
return 3;
|
|
}
|
|
return 0;
|
|
}
|