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

[HELP] Is there any way to let admins attack?


goodiesohhi
 Share

Recommended Posts

Remove this server side:

```

' Check to make sure that they dont have access

If GetPlayerAccess(Attacker) > ADMIN_MONITOR Then

Call PlayerMsg(Attacker, "Admins cannot attack other players.", BrightBlue)

Exit Function

End If

```

And

```

' Check to make sure the victim isn't an admin

If GetPlayerAccess(Victim) > ADMIN_MONITOR Then

Call PlayerMsg(Attacker, "You cannot attack " & GetPlayerName(Victim) & "!", BrightRed)

Exit Function

End If

```
Link to comment
Share on other sites

> Remove this server side:
>
> ```
>
> ' Check to make sure that they dont have access
>
> If GetPlayerAccess(Attacker) > ADMIN_MONITOR Then
>
> Call PlayerMsg(Attacker, "Admins cannot attack other players.", BrightBlue)
>
> Exit Function
>
> End If
>
> ```
>
> And
>
> ```
>
> ' Check to make sure the victim isn't an admin
>
> If GetPlayerAccess(Victim) > ADMIN_MONITOR Then
>
> Call PlayerMsg(Attacker, "You cannot attack " & GetPlayerName(Victim) & "!", BrightRed)
>
> Exit Function
>
> End If
>
> ```

I did it didn't work it still says that
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...