Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- #if defined FILTERSCRIPT
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print(" [FS]Sistema de JetPack - 3.0 - Kwerb - ON");
- print("--------------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- print("\n--------------------------------------");
- print(" [FS]Sistema de JetPack - 3.0 - Kwerb - OFF");
- print("--------------------------------------\n");
- return 1;
- }
- #endif
- public OnPlayerCommandText(playerid, cmdtext[])
- {
- if (strcmp("/Jetpack", cmdtext, true, 10) == 0)
- {
- SetPlayerSpecialAction(playerid, 2);
- new pname[MAX_PLAYER_NAME], string[256];
- GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
- format(string, sizeof(string), "{FF0000}[INFO]{FFFFFF} %s Esta usando Jetpack ( /jetpack )", pname);
- SendClientMessageToAll( 0xFFFFF , string);
- return 1;
- }
- return 0;
Advertisement
Add Comment
Please, Sign In to add comment