bug fix with chuff saying random stuff in chat

This commit is contained in:
Lorenc Pekaj 2018-12-23 12:35:32 +11:00
parent fdd6f4297a
commit 7fe17a317f

View File

@ -15,12 +15,16 @@
/* ** Hooks ** */
hook OnPlayerText( playerid, text[ ] )
{
if ( GetPlayerScore( playerid ) < 10 )
return SendServerMessage( playerid, "You need at least 10 score to talk. "COL_GREY"Use /ask or /report to talk to an admin in the meanwhile." ), Y_HOOKS_BREAK_RETURN_1;
if ( ! IsPlayerNPC( playerid ) ) {
if ( ! IsPlayerLoggedIn( playerid ) )
return SendError( playerid, "You must be logged in to talk." ), Y_HOOKS_BREAK_RETURN_1;
if ( GetPlayerScore( playerid ) < 10 ) {
return SendServerMessage( playerid, "You need at least 10 score to talk. "COL_GREY"Use /ask or /report to talk to an admin in the meanwhile." ), Y_HOOKS_BREAK_RETURN_1;
}
if ( ! IsPlayerLoggedIn( playerid ) ) {
return SendError( playerid, "You must be logged in to talk." ), Y_HOOKS_BREAK_RETURN_1;
}
}
return Y_HOOKS_CONTINUE_RETURN_1;
}