Jump to content

Robis

Member
  • Posts

    714
  • Joined

  • Last visited

Everything posted by Robis

  1. Robis

    HUD Panel

    @FouDuGame360 HEY. I GOT ONE MORE SIMPLE IDEA, you will se it in a photo attach
  2. Robis

    Raid Time Manager

    WOOOOOW Thank you !!!!!!!!!!!!!!!!!!!!!!!!! This plugin just craziest thing ever in a good way. Cant imagine my server with out this. Thank you for keeping it updating.
  3. Robis

    Raid Time Manager

    @AhigaO Possible to add it to this plugin ? When new player joining the server, he get (48 hours real time) a raid protection! And even during raid time, new players is protected. I noticed for new players can be hard to start... Older geared players just come for them at the raid time.... looks not fair. So i think new player in 48 hours get enought time to prepare for surviving.
  4. Robis

    Sound Library Api

    @supremeSound Library Encoder not working, when you select mp3 file, click submit and it not happening
  5. Robis

    Welcome Music

    same here even if i manage how to play it... people not happy about it. they get laggs
  6. Robis

    Welcome Music

    @Ajie even if i put light and short 24 seconds long file, players get laags while it plays. especialy if they jumping.
  7. Failed to call hook 'OnEntitySpawned' on plugin 'Loottable v1.0.17' (NullReferenceException: Object reference not set to an instance of an object) at Oxide.Plugins.Loottable+LootManager.CacheNpc (BasePlayer npc) [0x00023] in :0 at Oxide.Plugins.Loottable.OnEntitySpawned (BasePlayer npc) [0x0000b] in :0 at Oxide.Plugins.Loottable.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x02a43] in :0 at Oxide.Plugins.CSharpPlugin.InvokeMethod (Oxide.Core.Plugins.HookMethod method, System.Object[] args) [0x00079] in <09575a60985045248bcb43b20faeeb99>:0 at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x000d8] in :0 at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in :0
  8. @The_Kiiiing As far as i know, in the coming update will be some changes for loot The coming Rust update changes "chocholate" to "chocolate" It must help you if you dont know yet. (im not sure it will have affect this plugin or not)
  9. oh now i see the button to download, before was ask me to pay instead of download.... thats why i texted... sorry and nice job. some of them very important for my server, for example raidable scientist bases plugin...
  10. Woooow i bued it and cant anymore to download ? [FIXED]
  11. Woooow i bued it and cant anymore to download ? [FIXED]
  12. Robis

    Skill Tree

    Amazing looks.... But for me server, some skills is way to OWERPOWERED.... Some of skills i wish to remove at all, some of them to replace by own ones.... Any chance to add to run a command on skill learning ? Here no config example, so cant see if it has option....
  13. time by time i can see this: Failed to run a 3.30 timer in 'Loottable v1.0.15' (NullReferenceException: Object reference not set to an instance of an object) at Oxide.Plugins.Loottable+AirDropConfiguration+c__AnonStorey0.<>m__1 () [0x00000] in <17042ababfe24102992432643603b8d5>:0 at Oxide.Core.Libraries.Timer+TimerInstance.FireCallback () [0x00018] in :0
  14. Robis

    Shop UI

    @David this spamm comming from Shop plugin?
  15. OK thank you, and here i share latest info i got about problem to help you faster get it, i got no clue about coding 1. XLevels config part for pickups and harvest "XP settings | Shortname : ValueXP": { "XP for the pickup of resources": { "stones": 1.0, "wood": 1.0, "sulfur.ore": 1.0, "metal.ore": 1.0, "mushroom": 3.0 }, "XP for harvest": { "potato.entity": 2.0, "corn.entity": 2.0, "pumpkin.entity": 2.0, "hemp.emtity": 1.0, "black_berry.entity": 5.0, "yellow_berry.entity": 5.0, "blue_berry.entity": 5.0, "red_berry.entity": 5.0, "green_berry.entity": 5.0, "white_berry.entity": 5.0 }, 2. XLevels cs part for pickups and harvest private void OnCollectiblePickup(CollectibleEntity collectible, BasePlayer player) { if (!config.Setting.PickupValide) return; if (collectible == null || player == null) return; foreach(ItemAmount item in collectible.itemList) if(config.XP.PickupXP.ContainsKey(item.itemDef.shortname)) XPRateRerm(player, config.XP.PickupXP[item.itemDef.shortname]); } private void OnGrowableGather(GrowableEntity plant, BasePlayer player) { if (!config.Setting.HarvestValide) return; if (plant == null || player == null) return; if(config.XP.HarvestXP.ContainsKey(plant.ShortPrefabName)) XPRateRerm(player, config.XP.HarvestXP[plant.ShortPrefabName]); So must be only place that not matching with loottable as far as i was been told
  16. Robis

    Custom Chinook

    Automated natural spawned chinook use those points? or this one come only when use command ? Also would be great if you add and server spawned airdrops to work same way as chinook
  17. thats what i discovered if you still interesting tu understand me so if loot table and xlevels load same time (after server reboot) then it break xlevel reload loottable - pickup = NO ERROR (manually) so one of you write plugin in wrong way that plugins fight each other. and who is fault, sorry im not coding so i cant look in to it deeper. but if its loottable plugin folt, you may face more problems with other plugins to work together if they related to loot stuff. I would be really happy if you just put eye to check. Yes your plugin is great, but its also need to be friendly with other plugins. Thank you
  18. I didnt say its your fault..... i just told that xlevels working with out loot table plugin only!!! but you know, thank you
  19. Loot tables plugin making errors for plugin XLevels Entity pickups flood Please fix it Failed to call hook 'OnCollectiblePickup' on plugin 'XLevels v1.0.8' (NullReferenceException: Object reference not set to an instance of an object) at Oxide.Plugins.XLevels.OnCollectiblePickup (CollectibleEntity collectible, BasePlayer player) [0x00091] in <2291993e6c5240a59fadd2c412d0961b>:0 at Oxide.Plugins.XLevels.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x00867] in <2291993e6c5240a59fadd2c412d0961b>:0 at Oxide.Plugins.CSharpPlugin.InvokeMethod (Oxide.Core.Plugins.HookMethod method, System.Object[] args) [0x00079] in <09575a60985045248bcb43b20faeeb99>:0 at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x000d8] in :0 at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in :0
1.6m

Downloads

Total number of downloads.

7.7k

Customers

Total customers served.

115.5k

Files Sold

Total number of files sold.

2.4m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.