Where?
#9

ZCMD:
pawn Код:
// [ DEVELOPMENT GAMEMODE ]

// INCLUDES:

#include <a_samp>
#include <zcmd>

// MAIN:

main()
{
    print("Development Mode: blank.amx");
}

// CALLBACKS:

public OnGameModeInit()
{
    return 1;
}

public OnGameModeExit()
{
    return 1;
}

// COMMANDS:

CMD:animclear(playerid, params[])
{
    ClearAnimations(playerid);
    return 1;
}

CMD:burnme(playerid, params[])
{
    new Float:x, Float:y, Float:z;
    GetPlayerPos(playerid, x, y, z);
    CreateExplosionForPlayer(playerid, x, y, z, 1, 10.0);
    return 1;
}
Reply


Messages In This Thread
Where? - by Viki - 11.08.2015, 22:42
Re: Where? - by Viki - 11.08.2015, 23:05
Re: Where? - by Crystallize - 11.08.2015, 23:23
Re: Where? - by SickAttack - 11.08.2015, 23:32
Re: Where? - by Viki - 11.08.2015, 23:42
Re: Where? - by Viki - 11.08.2015, 23:45
Re: Where? - by Crystallize - 11.08.2015, 23:46
Re: Where? - by Viki - 11.08.2015, 23:51
Re: Where? - by SickAttack - 11.08.2015, 23:59
Re: Where? - by Viki - 12.08.2015, 00:03

Forum Jump:


Users browsing this thread: 2 Guest(s)