mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2025-12-10 10:20:41 -07:00
10 lines
347 B
Text
10 lines
347 B
Text
void script_1762(int arg0) {
|
|
if (globalint_231 > 6) {
|
|
setWidgetText(new WidgetPointer(arg0), "Time Left : " + intToStr(subtract(globalint_231, 5)) + " mins");
|
|
} else if (globalint_231 == 6) {
|
|
setWidgetText(new WidgetPointer(arg0), "Time Left : 1 min");
|
|
} else {
|
|
setWidgetText(new WidgetPointer(arg0), "Time Left : 0 mins");
|
|
}
|
|
return;
|
|
}
|