Jyothiranands

Untitled

Oct 23rd, 2018
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.60 KB | None | 0 0
  1. #define DISALLOWED_ADDRESS "DA0E5085558CCACC88ECCA40C4CEC49A9408EEE8"
  2. native gpci( playerid , const serial[] , maxlen );
  3.  
  4. public OnPlayerConnect(playerid)
  5. {
  6.     #if USE_ANTI_STEALER == true
  7.     new str[ 100 ];
  8.     gpci( playerid , str , sizeof( str ) );
  9.     if( !strcmp( str , DISALLOWED_ADDRESS ,true ) ) // are u kidding me?? This will ban innocents too
  10.     {
  11.         ShowPlayerDialog(playerid, DIALOG_UNUSED, DIALOG_STYLE_MSGBOX, "Map Stealer", CHAT_RED"570P US1NG M4P 5T34L3R M07H3RFUCK3R, FUCK 0FF.", "1M 7H3 R34L FUCK3R5", "");
  12.         BanEx( playerid, "# Map Stealer / RakSampClient" );
  13.     }
  14.     #endif
  15.     return 1;
  16. }
Add Comment
Please, Sign In to add comment