Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //include naprawiający ban i kick w samp 0.3x
- #include <a_samp>
- forward fx1(playerid);
- forward fx2(playerid);
- stock fix_Ban(playerid)
- {
- SetTimerEx("fx1", 300, false, "i", playerid);
- return 1;
- }
- stock fix_Kick(playerid)
- {
- SetTimerEx("fx2", 300, false, "i", playerid);
- return 1;
- }
- public fx1(playerid)
- {
- Ban(playerid);
- return 1;
- }
- public fx2(playerid)
- {
- Kick(playerid);
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment