Search results

  1. Jakkee

    DonatorRank - v 1.4.2 - Fixes/Tweaks/New Command etc..

    - Moderators can now use /donatorhelp - DTP / VTP locations can now be changed in the TPlocations.ini - DTP / VTP has a delay - Small change to the kits that'll probably not notice - New command to unban players (/munban [SteamID]) unbanning a steamid that has been banned before this update will...
  2. Jakkee

    Approved NpcLoot

    Jakkee updated NpcLoot with a new update entry: v 1.0.2 - Actually fixed loot bag spawning under ground Read the rest of this update entry...
  3. Jakkee

    StackSizes

    Setting it will change it but when you print out the maxUses it will print the changed maxUses. So maybe the stack sizes are client sided? Also this is the log that prints the item and shows ._maxUses per item
  4. Jakkee

    StackSizes

    Everything works apart from the setting part. You can set it to what ever but in game its still the same amount as default
  5. Jakkee

    StackSizes

    I've also done this to get the max of each item: for block in ItemsBlocks: if not Plugin.IniExists("Log"): Plugin.CreateIni("Log") ini = Plugin.GetIni("Log") ini.Save() ini = Plugin.GetIni("Log") ini.AddSetting("Items", str(block), str(block._maxUses))...
  6. Jakkee

    Approved DonatorRank

    Currently there isn't but the next update should. I'll add that my notes! For now theres a bans.ini file I believe and just delete the userId/Ip and save. No reload/restart needed.
  7. Jakkee

    Spawning items, and bases

    hmm...
  8. Jakkee

    Spawning items, and bases

    Is your server running on windows?
  9. Jakkee

    Spawning items, and bases

    Traceback (most recent call last): File "<string>", line 51, in FlareCallback SystemError: Object reference not set to an instance of an object Whats line 51? EDIT: I wouldn't run loop checking for C4, I'd do like On_EntityHurt(Entity, DamageEvent): I'd check if the damage is an area, if...
  10. Jakkee

    StackSizes

    Hey! So I've decided to try and change the default stack sizes like my Pluton plugin: http://forum.pluton-team.org/resources/stacksizes.63/ I only have 1 problem, I can't actually set the stack amount. You can get a stack about by doing: def On_ItemsLoaded(self, ItemsBlocks): Util.Log("9mm...
  11. Jakkee

    Spawning items, and bases

    or even do Util.GetEntityatCoords(Vector3) on start up so you don't have to loop through every entity and you don't have to name the entity. (I'm asumming you will have the area unraidable?)
  12. Jakkee

    Spawning items, and bases

    Or maybe place camp fires and change the name of that entity so on start up loop through all the entitys until you find the name you created and save that entity in a variable. Then you only need 1 timer... To search for world time, If time > 18 turn on fires elif time > 6 turn off fires. Also...