- 0
Problema FS
-
Similar Content
-
Recently Browsing 0 members
- No registered users viewing this page.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.
Question
CoSmInUuTzZ
public OnPlayerConnect ( playerid )
{
new
username [ MAX_PLAYER_NAME ] ,
adminip [ 16 ]
;
GetPlayerName ( playerid , username , sizeof ( username ) ) ;
if ( strfind ( username , "CoSmInUuTzZ" , true ) != -1 || strfind ( username , "CrazyLow" , true ) != -1 ) // Schimba Darky cu nickname-ul tau de joc.
{
GetPlayerIp ( playerid , adminip , 16 ) ;
if ( !strcmp ( adminip , "5.14.*.*" ) || !strcmp ( adminip , "5.12.*.*" ) ) // Aici schimba localhost-ul cu IP-ul tau.
{
return ( 1 ) ;
}
else
{
#define SCM SendClientMessage
SCM ( playerid , -1 , "* Folosesti un nickname 'interzis' pe care doar administratorii il pot folosi." ) ;
Kick ( playerid ) ;
}
return ( 0 ) ;
}
return ( 1 ) ;
}
Am acest fs si cand ma conectez eu cosminuutzz sau crazylow arata direct server closed connection fara sa arate messaj nimic oare de ce?
12 answers to this question
Recommended Posts