Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ocmd:explo(playerid, params[]) // k.a. was du benutzt
- {
- //Adminabfrage etc
- new Float:temppos[3];
- GetPlayerPos(playerid, temppos[0], temppos[1], temppos[2]);
- SetTimerEx("explotime", 10000, 0, "fff", temppos[0], temppos[1], temppos[2]);
- SendClientMessage(playerid, -1, "Bombe wurde gezündet. In 10 Sekunden rummst es!"); //Kannst auch noch nen 3dTextLabel da erstellen + Bombenobjekt, wie du willst
- return 1;
- }
- forward explotime(Float:x, Float:y, Float:z);
- public explotime(Float:x, Float:y, Float:z)
- {
- CreateExplosion(x, y, z, 12, 10.0);
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment