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

[EO] GM/DEV Tags


Ertzel
 Share

Recommended Posts

  • 8 months later...
> [http://imageshack.com/a/img856/8208/3idd.jpg](http://imageshack.com/a/img856/8208/3idd.jpg)
>
> how to solve this?

the system is DX7 you use is DX8

i will teach you simple to make GM tag

Open **modText** try to find **DrawPlayerName**

Replace all draw pk line with this

```

' Check access level
    If GetPlayerPK(Index) = NO Then

        Select Case GetPlayerAccess(Index)
            Case 0
                color = White
                Name = Trim$(Class(Player(Index).Class).Name) & " " & Trim$(Player(Index).Name)
            Case 1
                color = Orange
                Name = "[GM]" & Trim$(Player(Index).Name)
            Case 2
                color = Cyan
                Name = "[MAP]" & Trim$(Player(Index).Name)
            Case 3
                color = BrightGreen
                Name = "[MOD]" & Trim$(Player(Index).Name)
            Case 4
                color = Yellow
                Name = "[DEV]" & Trim$(Player(Index).Name)
        End Select

    Else
        color = BrightRed
    End If
```
Link to comment
Share on other sites

> Thx but… not solve : /
>
>  
>
> The project compiled, however Caracter Name in all acess is normal... not edit our crash, without modification... : /

start over fresh don't add the system in this thread, if you has been added delete it all , if the tutor you must replace something make it back again

then you add my code in my post

TADA! you have tag GM in your game
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...