Search results

  1. Jakkee

    Anti Spawn Bug Plugin

    If you have some console command call truth something set to enabled players will not be able to walk through stuff
  2. Jakkee

    mhow to make server with password?

    Whitelist?
  3. Jakkee

    Commands on Client side plugins

    Yep! Can do it now, But will also be sent to the server
  4. Jakkee

    On_PlayerGathering

    Should remove JS and replace with .CS
  5. Jakkee

    Solved Can Someone make an console command working on this plugin :D?

    __title__ = 'AutoAirDrop' __author__ = ''Jakkee __version__ = '0.1' import clr clr.AddReferenceByPartialName("Fougerite") import Fougerite class AutoAirDrop: Time = 600000 #Time is in milliseconds (600,000 = 10mins) def On_PluginInit(self): Util.ConsoleLog("AutoAirDrop by "...
  6. Jakkee

    UnbanTool Protection

    Lmao, What great read
  7. Jakkee

    About Fougerite Bug Reports

    Post on github and/or in tech support, this isn't a support thread
  8. Jakkee

    On_PlayerGathering

    Replace def with function Replace : with { In the if statements do: if (CheckVIP(player)) { //Code }
  9. Jakkee

    AirDrops plugin PROBLEM!

    HurtEvent.Attacker.Notice( + HurtEvent.Victim.Name "tem" + str(HurtEvent.Victim.Health)) Don't need the first +
  10. Jakkee

    AirDrops plugin PROBLEM!

    What is the error? You don't need the second class "class DamageShowAnimals", you can remove that line
  11. Jakkee

    On_PlayerGathering

    def On_PlayerGathering(self, Player, GatherEvent): if self.CheckVIP(Player): if GatherEvent.Item == "Wood": Player.Inventory.AddItem(GatherEvent.Item, 20) Player.Message("You have got an extra 20 " + GatherEvent.Item) elif GatherEvent.Item == "Sulfur...
  12. Jakkee

    Approved HitMarker

    Approved, Some pointers; - You hit xyz instead of you hitted xyz - Make sure the attacker is a player or it could be trying to send the message to animals and throw an error If (Attacker.IsPlayer) { Continue code here }
  13. Jakkee

    New exploit game

    Using RB?
  14. Jakkee

    Plugin that can increase the Furnace Speed/multiplie metal sulfur ...

    Should be possible, If you look under assembly-csharp and then find Oven or something it should be in there Where's abouts are you from? Or where do you want the server located?
  15. Jakkee

    New exploit game

    Oh shit wtf
  16. Jakkee

    New exploit game

    Easier to use Stopwatch class, The tick was just an example, But below is an example of using the stopwatch class using System; using System.Diagnostics; class Program { static void Main(string[] args) { Stopwatch stopWatch = new Stopwatch(); stopWatch.Start()...
  17. Jakkee

    New exploit game

    On_Shoot If bow Get server ticks and save in DataStore.Add("UserXYZ", System.Ticks) On player hurt DataStore.Get("UserXYZ") System.ticks - Above datastore
  18. Jakkee

    raid cooldown

    Have a look at what plugins you're using
  19. Jakkee

    Server Bug....

    Lol, but seriously back on topic.
  20. Jakkee

    any way of using oxide's legacy plugins?

    I think there's only one oxide server and that's owned by Draab