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

Admin Tags in Eclipse worlds


DawnOfEarth
 Share

Recommended Posts

This shows if you are admin or owner.

First find this: Public Sub DrawPlayerName.

then find

```

text = Trim$(Player(Index).Name)
TextX = GetPlayerTextX(Index) - GetFontWidth(text)

```
and replace with 

```

  If GetPlayerAccess(Index) = 0 Then
text = Trim$(Player(Index).Name)
    ElseIf GetPlayerAccess(Index) = 1 Then
    text = "[MOD] " & Trim$(Player(Index).Name)
    ElseIf GetPlayerAccess(Index) = 2 Then
    text = "[MPR] " & Trim$(Player(Index).Name)
    ElseIf GetPlayerAccess(Index) = 3 Then
    text = "[ADM] " & Trim$(Player(Index).Name)
    ElseIf GetPlayerAccess(Index) = 4 Then
    text = "[DEV] " & Trim$(Player(Index).Name)
    ElseIf GetPlayerAccess(Index) = 5 Then
    text = "[Owner] " & Trim$(Player(Index).Name)
    End If
    TextX = GetPlayerTextX(Index) - GetFontWidth(text)
```

You can change the titles to anything you want.
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...