Jump to content

Change_somthing


Recommended Posts

  • Replies 64
  • Created
  • Last Reply

Top Posters In This Topic

Posted

He asks how to change the (TEAM) text to (CLAN) text. If I'm correct, it has to be in teammanager, otherwise, you can maybe filter it with a script.

Posted

it's come with the some gameMode , or with admin Panel , if you press y you can type for team only ,

it's simple to make it as an script ..

Posted
g_Root = getRootElement() 
addEventHandler('onPlayerChat', g_Root, 
    function(msg, type) 
        if type == 2 then 
            cancelEvent() 
            local r, g, b = getPlayerNametagColor(source) 
            outputChatBox(getPlayerName(source) .. '(CLAN)' .. msg:gsub('#%x%x%x%x%x%x', ''), g_Root, r, g, b, true) 
        end 
    end 
) 

Posted

when i press Y all can see the message -_-

g_Root = getRootElement() 
addEventHandler('onPlayerChat', g_Root, 
    function(msg, type) 
        if type == 2 then 
            cancelEvent() 
            local r, g, b = getPlayerNametagColor(source) 
            outputChatBox(getPlayerName(source) .. '(CLAN)' .. msg:gsub('#%x%x%x%x%x%x', ''), g_Root, r, g, b, true) 
        end 
    end 
) 

Posted

Ain't you supposed to have created all that other stuff? I'm sure you can figure how to make to what you need man. You gotta give it a try, can't expect everyone to do it for you.

Posted

of course every one will see the msg , becuase you used guiRoot - getRootElement ( for all players )

Change it to source ,

Posted
of course every one will see the msg , becuase you used guiRoot - getRootElement ( for all players )

Change it to source ,

That still wont fix the problem, he'll need to check if the players are in a team and if they're in the same team(This is what he wants).

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
  • Recently Browsing   0 members

    • No registered users viewing this page.

×
×
  • Create New...