23.07.2013, 03:14
Easy:
Lets do the Command, you must only have this to "convert" to a command processor.
First, you have to find out, which Coordinats the player have:
Now we got the Position.
Lets create the Explosion, with the Position:
11 stands for the type
25.0stands for the radius
End: If you want to do more Explosion, you can do a Timer, with repeating function.
But, one or maybe two Explosion can kill one Player...
Lets do the Command, you must only have this to "convert" to a command processor.
First, you have to find out, which Coordinats the player have:
Quote:
new Float: x, Float: y, Float: z, ; GetPlayerPos(playerid, x, y, z); |
Lets create the Explosion, with the Position:
Quote:
CreateExplosion(x, y, z, 11, 25.0); |
25.0stands for the radius
End: If you want to do more Explosion, you can do a Timer, with repeating function.
But, one or maybe two Explosion can kill one Player...