Jump to content
  • 0

[Cerere]Chat Tag System


AlexMaican

Question

4 answers to this question

Recommended Posts

  • 0

La public OnPlayerText , adaugi ceva de genul :

 

if(PlayerInfo[playerid][pLeader] == 1 || PlayerInfo[playerid][pMember] == 1)
{
    new string[144];
    format(string, sizeof(string), "Politist %s spune: %s", pName, text);
    ProxDetector(30.0, playerid, string, COLOR_WHITE,COLOR_WHITE,COLOR_WHITE,COLOR_WHITE,COLOW_WHITE);
    SetPlayerChatBubble(playerid, string); // Asta daca vrei sa apara deasupra capului ce scrie .
}

Si faci asa pentru fiecare factiune . La OnPlayerText ar trebui sa ai definite variabilele string , pName si text . Si vezi ca ai postat la categoria gresita, eventual puteai face o cerere tutorial ...

Edited by NoNamed
Link to comment
Share on other sites

  • 0
new NumeFactiuni[][] =
{
    "Civil",
    "Nume Factiunea 1",
    "Nume Factiunea 2",
    " Etc..."

};
if(PlayerInfo[playerid][pLeader] >= 1)
{
    new string[144];
    format(string, sizeof(string), "%s %s spune: %s", NumeFactiuni[PlayerInfo[playerid][pLeader]],pName, text);
    ProxDetector(30.0, playerid, string, COLOR_WHITE,COLOR_WHITE,COLOR_WHITE,COLOR_WHITE,COLOW_WHITE);
    SetPlayerChatBubble(playerid, string); // Asta daca vrei sa apara deasupra capului ce scrie .
}

else if(PlayerInfo[playerid][pMember] >= 0)

{
    new string[144];
    format(string, sizeof(string), "%s %s spune: %s", NumeFactiuni[PlayerInfo[playerid][pMember]],pName, text);
    ProxDetector(30.0, playerid, string, COLOR_WHITE,COLOR_WHITE,COLOR_WHITE,COLOR_WHITE,COLOW_WHITE);
    SetPlayerChatBubble(playerid, string); // Asta daca vrei sa apara deasupra capului ce scrie .
}

 

Ceva mai simplu ,zic eu ..
P.S. La nume factiuni adaugi numele factiunilor tale

Edited by Neooooo
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

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.