CreateObject(X,Y,Z, 6, 1000);
|
Originally Posted by bartje01
Can't I make it much bigger? I want a supah big explosion :P
|
|
Originally Posted by bartje01
Thanks. But I want to have it really massive. Really really realllllyyyyy massive.
And yes notime:P Your firework script is just the best I saw |
CreateExplosion(X,Y,Z, 7, 100); CreateExplosion(X+3,Y,Z, 12, 1000); CreateExplosion(X-3,Y,Z, 12, 1000); CreateExplosion(X+3,Y+3,Z, 12, 1000); CreateExplosion(X+3,Y-1,Z, 12, 1000); CreateExplosion(X-3,Y+3,Z, 12, 1000); CreateExplosion(X-3,Y-3,Z, 12, 1000);
|
Originally Posted by bartje01
Yaaay. Thanks Notime. Now I have a super Iligal firecracker xD
|
|
Originally Posted by Notime
Quote:
|
}
if(strcmp("firecracker", params, true, 8) == 0)
{
if(firecrackertime[playerid] == 0)
{
new Float:X, Float:Y,Float:Z;
firecrackertime[playerid] = 1;
new string[128];
new sendername[MAX_PLAYER_NAME];
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), "<> %s throws away a firecracker.", sendername);
ProxDetector(15.0, playerid, string, WHITE,WHITE,WHITE,WHITE,WHITE);
GetPlayerPos(playerid,X,Y,Z);
GetXYInFrontOfPlayer(playerid, X,Y, 8);
Firecracker[playerid] = CreateObject(1672, X,Y,(Z-0.9), 0, 0, 0);
CreateExplosion(X,Y,Z, 7, 100);
CreateExplosion(X+3,Y,Z, 7, 100);
CreateExplosion(X-3,Y,Z, 7, 100);
CreateExplosion(X+3,Y+3,Z, 7, 100);
CreateExplosion(X+3,Y-1,Z, 7, 100);
CreateExplosion(X-3,Y+3,Z, 7, 100);
CreateExplosion(X-3,Y-3,Z, 7, 100);
SetTimerEx("FirecrackerTime", 10000, 7, "i", playerid);
return 1;
}