View difference between Paste ID: Mzt1pPrz and c8K4AyaF
SHOW: | | - or go back to the newest paste.
1
#include <a_samp>
2
#include <zcmd>
3-
#if defined FILTERSCRIPT
3+
4
CMD:jetpack(playerid)
5-
public OnFilterScriptInit()
5+
6
    SetPlayerSpecialAction(playerid, 2);
7-
	print("\n--------------------------------------");
7+
    new pname[MAX_PLAYER_NAME], string[256];
8-
	print(" [FS]Sistema de JetPack - 3.0 - Kwerb - ON");
8+
    GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
9-
	print("--------------------------------------\n");
9+
    format(string, sizeof(string), "{FF0000}[INFO]{FFFFFF} %s Esta usando Jetpack ( /jetpack )", pname);
10-
	return 1;
10+
    SendClientMessageToAll( 0xFFFFF , string);
11-
}
11+
    return 1;
12
}