
Inf_Points(){
self endon("stop_inf");
self iPrintln("Infinite Points: Activated");
for(;
{
self.inf = 500;
self.score = self.inf;
while(1){
if(self.score != self.inf){
self.score = self.inf;
}
}
}else{
self notify("stop_inf");
self iPrintln("Infinite Points: Deactivated");
}
}

Inf_Points(){
self endon("stop_inf");
self iPrintln("Infinite Points: Activated");
for(;
{
self.inf = 500;
self.score = self.inf;
while(1){
if(self.score != self.inf){
self.score = self.inf;
}
}
}else{
self notify("stop_inf");
self iPrintln("Infinite Points: Deactivated");
}
}


InfinitePointsTGL()
{
if( self.iniPoints == 0 )
{
self thread InfinitePoints();
self.iniPoints = 1;
self iPrintlnBold ("Infinite Points ^2Enabled");
}
else
{
self.iniPoints = 0;
self notify("iniEnd");
self iPrintlnBold ("Infinite Points ^1Disabled");
}
}
InfinitePoints()
{
self endon("iniEnd");
for(;
{
self.score -= self.score;
self.score += 10000;
wait .5;
}
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.