Search results

  1. Jakkee

    AdminCommands

    I think its DamageAmount not damageAmount. (Haven't looked through dotpeek yet)
  2. Jakkee

    AdminCommands

    What doesn't work? A little detail would help him pin point the problem
  3. Jakkee

    AdminCommands

    I read it wrong xD
  4. Jakkee

    AdminCommands

    From what I see is that God mode only protects you from other players only.
  5. Jakkee

    AdminCommands

    Apperntaly when doing /god it always says "Godmode off"
  6. Jakkee

    Airdrop plane stuck in the ground

    Run around till you see it then shoot it
  7. Jakkee

    AdminCommands

    This should work elif cmd.cmd == "god": if not Player.Admin: Player.Message("You aren't an admin!") return if DataStore.Get("godmode", Player.SteamID) == "on": DataStore.Remove("godmode", Player.SteamID)...
  8. Jakkee

    Instabuild

  9. Jakkee

    Instabuild

    I wonder how a server would handle a 50k lined text file. (I might test this)
  10. Jakkee

    Instabuild

    Well a steam id Plus location for each entity... Some servers have 60,000-70,000 Entitys before they wipe.(Legacy) And Experimental handles Entitys better so that list would be longer. So if I did /destroy and hit an object it would have to scan through 60k lines of text just to see if I placed it
  11. Jakkee

    Instabuild

    Returns some Iu64 error.
  12. Jakkee

    Instabuild

    Yeah I tried that, It returns in an error. (Can't remember, I'll try again soon) I think it has to do with finding the player, It finds a random connect players. If it just me online it will return my ID and let me destroy it.
  13. Jakkee

    Solved A strange error

    You're home network does not have a stable internet connect (This is what I believe is going on)
  14. Jakkee

    Instabuild

    I was messing around trying to find some sort of instabuild, but I got side tracked and can kinda get the SteamID of who placed the object. (Tried to create a destroy mod, But it just gives a random connected players steamid)
  15. Jakkee

    HomeSet [Deleted]

    Jakkee updated HomeSet with a new update entry: V1.1 - Limit how many homes can be set Read the rest of this update entry...
  16. Jakkee

    HomeSet [Deleted]

    :DPraise @DreTaX !!
  17. Jakkee

    DeathMSG

    I'v been following your GitHub and I noticed that 2 people had forked it. the other guy seems to be inactive. EDIT: Not sure who he is, But im sure he is a developer in Oxide. (As he is capable of compiling Oxide. (Assuming he can since he forked it)).
  18. Jakkee

    DeathMSG

    Looks like there might be some Oxide knock offs of your plugins.
  19. Jakkee

    Reload feature.

    :eek: Thanks for that!
  20. Jakkee

    Reload feature.

    You can reload 1 plugin at a time in game. class Reload: def On_Command(self, command): if command.cmd == "Reload": PluginLoader.ReloadPlugin("Insert String Name") (Just pulled this out of DotPeek)