Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Anti Beleidigungs System by [eVo]Julian
- */
- #include <a_samp>
- new SchimpfWort[3][64]= {
- {"Lauch"},
- {"Penner"},
- {"Huso"}
- };
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print(" Anti Beleidigungs System by [eVo]Julian");
- print("--------------------------------------\n");
- return 1;
- }
- public OnPlayerText(playerid, text[])
- {
- for(new i=0;i<sizeof(SchimpfWort);i++)
- {
- if(strfind(text,SchimpfWort[i],true) != -1)
- {
- SendClientMessage(playerid,0xAA3333AA,"Du wurdest wegen einer beleidigung gekickt");
- Kick(playerid);
- }
- return 1;
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment