26.09.2013, 18:15
I runned this mod but it just wouldn't load it.
Код:
//-------------------- :::..~~~ Bomb made by boomerboom~~~..::: -------------------- #include a_samp #include zcmd new Float:X, Float:Y, Float:Z; public OnFilterScriptInit() { print(":::..~~~ Bomb made by boomerboom~~~..:::"); print("____________________________________"); return 1; } COMMAND:nukebomb(playerid, params[]) { // Get the player's position new Float:x, Float:y, Float:z; GetPlayerPos(playerid, x, y, z); // Create an explosion at the player's position CreateExplosion(x, y, z, 12, 10.0); // Send a message to everyone. SendClientMessageToAll(-1, "He,he,he...Tryed to destroy the city, but killed him self."); return 1; } COMMAND:cfs(playerid, params[]) { new currentveh; currentveh = GetPlayerVehicleID(playerid); DestroyVehicle(currentveh); return 1; } return id; } //------------------------------------------------------------------------------