Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

[EO] MOD and GM tags


chuchoide
 Share

Recommended Posts

I'm doing a simple tutorial for adding [MOD] and [GM] tags, and whatever.

Client side: Go to modText and go to Sub DrawPlayerName.
Search for:
```
Name = Trim$(Player(Index).Name)
```
Replace with:
```
    If GetPlayerAccess(Index) = 0 Then
    Name = Trim$(Player(Index).Name)
    ElseIf GetPlayerAccess(Index) = 1 Then
    Name = "[MOD] " & Trim$(Player(Index).Name)
    ElseIf GetPlayerAccess(Index) = 2 Then
    Name = "[MPR] " & Trim$(Player(Index).Name)
    ElseIf GetPlayerAccess(Index) = 3 Then
    Name = "[ADM] " & Trim$(Player(Index).Name)
    ElseIf GetPlayerAccess(Index) = 4 Then
    Name = "[DEV] " & Trim$(Player(Index).Name)
    End If
```
Replace the tags and edit it at your liking.
**Tested and works.**
Link to comment
Share on other sites

  • 2 weeks later...
  • 8 months later...
@SholT:

> How i can make GM and MOD tags in EE?

Look pal. There are only two options here, you use EO or you don't. Why do you want EE anyway? I can get ES but EE? Why EE?! EE is just a bunch of bs slapped together compared to EO.
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
 Share

×
×
  • Create New...