Search results

  1. Jakkee

    Spawning items, and bases

    Just do a 60second timer to check for night time Im using 1069
  2. Jakkee

    Spawning items, and bases

    Callback works (Spawns 3 flares every second), Medical box spawns on player spawn. butttt after the callback had looped about 10 times the server crashed.. Got this from Output_log.txt PhysicsSDK: NpScene::createActor: WriteLock is still acquired. Procedure call skipped to avoid a deadlock...
  3. Jakkee

    Spawning items, and bases

    interesting...
  4. Jakkee

    Spawning items, and bases

    Post your full plugin code or http://pastebin.com/ it.
  5. Jakkee

    Spawning items, and bases

    Try: import clr clr.AddReferenceByPartialName("Fougerite") import Fougerite class Test: def On_Command(self, Player, cmd, args): if cmd == "spawn": if Player.Admin: World.Spawn("WorldFlare_New", Player.X, Player.Y +2, Player.Z) else...
  6. Jakkee

    Spawning items, and bases

    Check your output.log to see if any hidden errors appeared. Root/Rust_Server_data/Output.log
  7. Jakkee

    Solved Wheres Magma ?

    Its not too hard to convert Lua to Python, The only problem is that you have to write the whole thing from scratch as you can not copy and paste. You can not use online programs to convert Lua to Python and even if you could 100% convert it, You'd still have to change the Hooks and methods its...
  8. Jakkee

    Solved Loops, GetSetting()

    That worked! Thanks!
  9. Jakkee

    Solved Wheres Magma ?

    @DreTaX Look what I found... PortalGun thingy xD http://rustmagma.ru/173-plagin-tpmaster-dlya-magma.html case "p": if(Player.Admin){ var location; var distArray = []; var hits = UnityEngine.Physics.RaycastAll(Player.PlayerClient.controllable.character.eyesRay)...
  10. Jakkee

    Solved Wheres Magma ?

    Theirs a few Russian websites with some magma plugins. I know theirs a fake Russian website faking another Russian magma website and the downloads are full of Virus's (E.G: Arena++.exe) Heres a link to one that I believe is 100% legit...
  11. Jakkee

    Solved Loops, GetSetting()

    Basically I'd like to get the value from a setting an ini file. E.G [Items] Metal Ore=250 I'd like to get "250". This is what I have at the moment: keys = Plugin.GetIni("Settings").EnumSection("Items") setting = Plugin.GetIni("Settings").GetSetting...
  12. Jakkee

    Solved Wheres Magma ?

    Heres Arena++ not sure what version this is.
  13. Jakkee

    Spawning items, and bases

    Just do a try/except so you don't get the errors in console if its always throwing an error. E.G: Try: World.Spawn("WorldFlare_New", Player.X, Player.Y, Player.Z) Except Exception: Exception = None #Do stuff here if error appears ^Something like this should work
  14. Jakkee

    Spawning items, and bases

    World.Spawn("WorldFlare_New", Player.X, Player.Y + 6, Player.Z)
  15. Jakkee

    Approved TimeVoter

    Are your players abusing the plugin?
  16. Jakkee

    Auto plugin updater / Version checker

    I see only 2 problems with this; 1- Getting a plugins version you'd have to search the plugins website page (1900ish lines) 2- Downloading a newer version would require a logged in account or it can not download it. Has anyone tried this? I guess the fixes would be; 1- Another website page that...
  17. Jakkee

    Solved Freezing a Player

    http://fougerite.com/resources/freezer.9/?
  18. Jakkee

    Tphere and tpto

    http://fougerite.com/resources/reservedslots.103/
  19. Jakkee

    Approved ReservedSlots

    Jakkee submitted a new resource: ReservedSlots - Reserve slots for your Admins/Moderators/VIPs/Donators etc.. Read more about this resource...
  20. Jakkee

    ReservedSlots - ReservedSlots

    Description: Hate it when you can't even join your own server because you do not have enough slots? Well with this plugin you can choose how many slots you want to save! This plugin supports DreTaX's Moderator Plugin Installation: - Place into Python folder - Reload the server - Done To do...