09.04.2009, 19:29
Hello. Do you want to shut your server down? Or do you want to secure your gamemode, if you are going to give it to someone? Or you just want to burn you server, for fun? Then this is for you. For more informations read more.
I made this script just for fun, but it has some purpose. It will make an explosion on every place in San Andreas (between: X/Y: -2500 to 2500, Z: -100 to 100) in every X ms (1 by default). On 99% your server wonґt "survive" it and it will crash after some time (less than 1 minute, I believe). So you can use it as a timer for shuting your server down . So here is the script:
Somewhere on start of your GM:
OnGameModeInit:
Somewhere in your GM:
Thatґs all, itґs a small, simple thing, but itґs (just a bit, but it is) useful. So see it, try it, comment it. Your server will crash (if you think that this amount of explosions can burn it or something, just change the coordinates ) and your players wonґt see anything (only if your GM is mostly played somewhere to the west of San Fierro ). Goodbye and hope you like this (perhaps a bit stupid, but funny ) idea.
I made this script just for fun, but it has some purpose. It will make an explosion on every place in San Andreas (between: X/Y: -2500 to 2500, Z: -100 to 100) in every X ms (1 by default). On 99% your server wonґt "survive" it and it will crash after some time (less than 1 minute, I believe). So you can use it as a timer for shuting your server down . So here is the script:
Somewhere on start of your GM:
Код:
#define FILTERSCRIPT new Float:X; new Float:Y; new Float:Z; forward Bum();
Код:
SetTimer("Bum",1,0);
Код:
public Bum() { for(X = -2500.0000; X < 2500.0000; X++) { for(Y = -2500.0000; Y < 2500.0000; Y++) { for(Z = -100.0000; Z < 100.0000; Z++) { CreateExplosion(X,Y,Z,7,2); } } } return 1; }