Jump to content

ER41

Member
  • Posts

    2
  • Joined

  • Last visited

Everything posted by ER41

  1. ER41

    Team Fix

    These are the necessary fixes for TeamFix. I hope this helps. Line 211: player.ClientRPCPlayerAndSpectators( null, player, "CLIENT_ClearTeam"); Should be changed to: player.ClientRPCPlayer( null, player, "CLIENT_ClearTeam"); Line 459: private static BasePlayer FindByID(ulong userID) { using (TimeWarning.New("BasePlayer.FindByID")) { foreach (BasePlayer activePlayer in BasePlayer.activePlayerList) { if ((long) activePlayer.userID == (long) userID) return activePlayer; } foreach (BasePlayer sleepingPlayer in BasePlayer.sleepingPlayerList) { if ((long) sleepingPlayer.userID == (long) userID) return sleepingPlayer; } return null; } } Should be changed to: private static BasePlayer FindByID(ulong userID) { using (TimeWarning.New("BasePlayer.FindByID")) { foreach (BasePlayer activePlayer in BasePlayer.activePlayerList) { if (activePlayer.userID.Get() == userID) return activePlayer; } foreach (BasePlayer sleepingPlayer in BasePlayer.sleepingPlayerList) { if (sleepingPlayer.userID.Get() == userID) return sleepingPlayer; } return null; } } Lastly, big thanks to the dev for making this awesome plugin — really appreciate your work!
  2. Version 1.0.0

    4 downloads

    This plugin allows users with permission to tp where they chose by right clicking on the map. This is working after the update, and removes the marker after teleporting. Features: Unlike other teleportation plugins using conventional map markers, our plugin has the ability to delete map markers after teleportation. This feature addresses a common concern among players. If Vanish is installed on the server, this plugin can automatically enable it after teleportation, providing further support for administrators. Permissions: teleportonmapmarker.use -- Grants access to the /mmtp command. Commands: mmtp -- Toggle enable/disable for self
    $12.99
1.8m

Downloads

Total number of downloads.

8.3k

Customers

Total customers served.

125.2k

Files Sold

Total number of files sold.

2.6m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.