10 lines
228 B
Plaintext
10 lines
228 B
Plaintext
void main()
|
|
{
|
|
SetLocalInt(OBJECT_SELF, "counter", 0);
|
|
while (GetLocalInt(OBJECT_SELF, "counter") < 100)
|
|
{
|
|
ExecuteScript("uberloot", OBJECT_SELF);
|
|
SetLocalInt(OBJECT_SELF, "counter", GetLocalInt(OBJECT_SELF, "counter") + 1);
|
|
}
|
|
}
|