Search results

  1. Jakkee

    Global suspect

    Timer isn't being calledback
  2. Jakkee

    Global suspect

    I guess add something in the timer like; var OldPlayerLocation = Data[PlayerLocation] var distance = Util.GetVectorsDistance(Player.location, OldPlayerLocation); if distance > 2{ Ban? else{ TimedEvent.Kill();
  3. Jakkee

    Global suspect

    I'll have a look when I get home later on today or possibly tomorrow. I don't see anything wrong with the code, Maybe play around with it or add some debugging code to find out if the timer is even called or something
  4. Jakkee

    Creating modules in C#

    Your player will stay still for everyone while you can run around
  5. Jakkee

    Spectate plugin for rust?

    Fourite is for legacy ;) Pluton is where you should be looking: Forum.Pluton-team.org
  6. Jakkee

    Global suspect

    Are you using Jint or Magma?
  7. Jakkee

    Creating modules in C#

    http://fougerite.com/resources/vanish.88/ ?
  8. Jakkee

    Global suspect

    Try this: function On_Command(Player, cmd, args) { if(cmd == "test") { var target = Server.FindPlayer(args[0]); if(target = null) { Player.Message("Can not find" + args[0]); } else { var Data = Plugin.CreateDict()...
  9. Jakkee

    Global suspect

    Any errors?
  10. Jakkee

    Global suspect

    function On_Command(Player, cmd, args) { if(cmd == "test") { var target = Server.FindPlayer(args[0]); if(Target = null) { Player.Message("Can not find" + args[0]); } else { var Data = Plugin.CreateDict()...
  11. Jakkee

    Global suspect

    Your timer callback doesn't know (Can never find) what setting to lookup in the INI file. Var Help will always be null Your timer doesn't have any data being carried over to it. http://fougerite.com/wiki/timer-setups/ That's an example on how to carry data over into a timer
  12. Jakkee

    On_VoiceChat

    When you talk, nothing happens?
  13. Jakkee

    better antycheat?

    How are players losing items?
  14. Jakkee

    Is this forum still active?

    That's me :)
  15. Jakkee

    I ask to help to understand

    I'm not 100% sure what you mean, I assume you were meaning; 1: Something to do with teams? Team Death match? 2: Check if someones admin? or add them to a Admin list?
  16. Jakkee

    Approved DonatorRank

    @PearlJ @tarynkelley Kits + Cooldowns should be fixed. As for the Rust++ Mute, You'll have to talk to DreTaX about adding a method to do IsMuted(Player):Bool Once that has been created i'll be able to easily fix this issue. ( I tried to hack my around this but I couldn't mute myself.. so yeah..)
  17. Jakkee

    Approved DonatorRank

    Jakkee updated DonatorRank with a new update entry: V 1.5.4 - Fixes: Cooldowns & Kits Read the rest of this update entry...
  18. Jakkee

    DonatorRank - V 1.5.4 - Fixes: Cooldowns & Kits

    Possible fix for cooldowns & kits?
  19. Jakkee

    Approved DonatorRank

    On this plugins info page it says edit settings then reload unless this happens after a reload and still only get 5 out of X items? If this is the case, Copy your kit settings here
  20. Jakkee

    Approved DonatorRank

    it can be fixed but the players name will be [Donator] SomeName for the server, When tp'ing you have to include [Donator] in the name. The method I'm using is removing the players chat message and use a server broadcast but with the players name. I'll have a look today