Blockland Forums > Suggestions & Requests
Random Environment "Spammer"
MrLoganator111:
I want a simple script where i can do /RES and it starts switching the environments as if I pressed the Random button in Environments every 0.1 or 0.2 seconds or so. It shouldn't be very hard, but I don't really know how to create a relay-like thing with scripting.
TristanLuigi:
Just get an autoclicker and use it on the random button, because I don't see any use for having this permanently.
MrLoganator111:
For something like Wrapperup's LSD Dream Simulator thing.
Pacnet2012³:
--- Quote from: MrLoganator111 on July 30, 2013, 05:04:30 PM ---For something like Wrapperup's LSD Dream Simulator thing.
--- End quote ---
I'm sure it is the rainbow day cycle at an extremely small amount of time per day, but anyway I tried tracing for a server-sided random environment function but it turns out the client generates it randomly then sends envgui_setvar so...
--- Code: ---function randomEnvSpam()
{
EnvGui.clickRandom();
schedule(200, 0, "randomEnvSpam");
}
package randomE
{
function NMH::Send(%this)
{
if(%this.getValue() $= "/RES")
{
randomEnvSpam();
}
parent::Send(%this);
}
};
activatePackage(randomE);
--- End code ---
Renekar:
--- Quote from: MrLoganator111 on July 30, 2013, 05:04:30 PM ---For something like Wrapperup's LSD Dream Simulator thing.
--- End quote ---
i used an autoclicker on the "random" button.