ItsMods

Full Version: Permanent UAV Plugin for Private Hight Jump Infected Server
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Exist a Permanent UAV Plugin for Private Hight Jump Infected Server? If Not Can Someone Please Make It? I Need It For Annoying Hiding People And I Cant Find It On Internet.

P.S. I Dont Want Hacks Just A Clean Plugin.
(04-01-2013, 17:07)Paxton Wrote: [ -> ]Exist a Permanent UAV Plugin for Private Hight Jump Infected Server? If Not Can Someone Please Make It? I Need It For Annoying Hiding People And I Cant Find It On Internet.

P.S. I Dont Want Hacks Just A Clean Plugin.
You can make a permanent uav without using any plugin just put it permanent when u r editing the class .dsr
But i dont know if it will work out map too.
yes but i need an Out Of Map too i hope it exist
compile it on your own
CSHARP Code
  1. using System;
  2. using Addon;
  3.  
  4. namespace uav
  5. {
  6. public class Class1 :CPlugin
  7. {
  8. public override void OnPlayerConnect(ServerClient Client)
  9. {
  10. Client.Other.UAV.Enabled = true;
  11. Client.Other.UAV.FastUpdate = true;
  12. Client.Other.UAV.ShowDirection = true;
  13. base.OnPlayerConnect(Client);
  14. }
  15. }
  16. }
it allow uav out of map too?
(04-01-2013, 17:32)archit Wrote: [ -> ]compile it on your own

You should use OnPlayerSpawned because it's resetting after you die I think
(04-01-2013, 20:12)8q4s8 Wrote: [ -> ]
(04-01-2013, 17:32)archit Wrote: [ -> ]compile it on your own

You should use OnPlayerSpawned because it's resetting after you die I think

But it's onplayerconnect, unless it requires a loop.
It doesn't reset after dieing.
I always used just uav.enabled = true.
Works fine Smile
I didn't know about that direction and fastupdate, thanks!