Help in filterscript :/
#1

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;
}

//------------------------------------------------------------------------------
Reply
#2

pawn Код:
#include a_samp
#include zcmd
should be:

pawn Код:
#include <a_samp>
#include <zcmd>
Reply
#3

Quote:
Originally Posted by x96664
Посмотреть сообщение
pawn Код:
#include a_samp
#include zcmd
should be:

pawn Код:
#include <a_samp>
#include <zcmd>
That's not working...Tryed...
Reply
#4

I doubt you compiled it. I compiled it for you, look below.
Reply
#5

Ohh yeah thank you.Too bad I can't +REP you two :/
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)