Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Chat Kill/Death/Connect/Disconnect for SA:MP.
- // Provided by code Paulinho in HomeHots.net
- #include < a_samp >
- public OnFilterScriptInit()
- {
- print("\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
- print(" Filterscript Chat Kill/Death/Connect/Disconnect;");
- print(" Filterscript made by Paulinho.");
- print(" Filterscript was loaded successfully.");
- print("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- print("\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
- print(" Filterscript Chat Kill/Death/Connect/Disconnect;");
- print(" Filterscript made by Paulinho.");
- print(" Filterscript was unloaded successfully.");
- print("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n");
- return 1;
- }
- public OnPlayerConnect(playerid)
- {
- SendDeathMessage(playerid, INVALID_PLAYER_ID, 200);
- return 1;
- }
- public OnPlayerDisconnect(playerid, reason)
- {
- SendDeathMessage(INVALID_PLAYER_ID, playerid, 201);
- return 1;
- }
- public OnPlayerDeath(playerid, killerid, reason)
- {
- SendDeathMessage(killerid, playerid, reason);
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment