Jump to content

pomoc Prefix Admin a Hrac


Faza

Recommended Posts

Dobrý deň, vedel by niekto vytovriť prefixy pred meno?

pwn aby som si to mohol upraviť

Admin a Hrac

Ďakujem veľmi pekne :)

 

Takto som našiel treba to dať do pluginu + tam dorobiť pre hraca prefix :) Ďakujem :)

 

public OnPlayerText(playerid, text[])
{
    if(PlayerInfo[playerid][pAdminLevel] >= 1)
    {
   
        new String[128],
            name[MAX_PLAYER_NAME]
        ;
        format(String, sizeof(String), "[PREFIX] %s: %s", name, text);
        SendClientMessageToAll(0xFFFFFFF, String);
        return 1;
    }
    return 0;
}

 

Link to comment
Share on other sites

if(PlayerInfo[playerid][pAdminLevel] > 0)

{

new name[33],String[128];

GetPlayerName(..,...,..);

format(String,128,"[Prefix]_%s : %s",name,text);

SendClientMessageToAll(-1,String);

return 0;

}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...