Search results

  1. gintaras

    Placing opbject on your self [BUG]

    I'm using... there is some special to need set up? all default in my server, please try you self to do this glitch- bug its easy to reproduce just place on your self that your all body is in foundation and you can do alot of things inside.
  2. gintaras

    Placing opbject on your self [BUG]

    need to fix this players hiding boxes under fundation and they just put fundation un self to get to boxes, need to fix same as player try get trow wall...
  3. gintaras

    Select object

    He wants to add new loot boxes that spawns items like weapon loot box end etc. I think he need rustbuster plugin and server side plugin
  4. gintaras

    Approved Airdrops

    plugin marks the wrong location of drops
  5. gintaras

    Placing opbject on your self [BUG]

    not only you can be in fondation but you can place chest in it and you cant loot from it if you are not owner...
  6. gintaras

    Placing opbject on your self [BUG]

    Hi, In my server (fogerite+buster) there are ppl you glith I dont know how it calls but they place on them self fondation and they are in side and can shoot to others but they are untouchible maybe it is possible with other objects i dont know need fix for this
  7. gintaras

    Fougerite Official

    I have suggestion to save data asinc way because now it saves 3,4k and it took 0.1sec so for this time no one gets fps :) better to save like every time is object placed destroyed or smth and save only this staff or something else but need to fix it if server gets bigger server will take longer...
  8. gintaras

    New RustBuster update has errors (V1.3.6)

    Dretax if server side is made in unity maybe you can export it to linux unity have linux support maybe this will fix ofcouse if it possible
  9. gintaras

    New RustBuster update has errors (V1.3.6)

    Yes i use wine RustBuster.log nothing new same think all log... 1/26/2017 5:34:44 PM [Console] [RustBuster Players] 76561197962111111 b2e5718ac0feebca70e9711261a5c8dc0cb4cb49 1/26/2017 5:35:15 PM [Console] [RustBuster Players] 76561201367111111 b2e3575412d6aa0b4c72837c9573be5cecd6c322 1/26/2017...
  10. gintaras

    New RustBuster update has errors (V1.3.6)

    Hi, Until 1.3.5 was everything fine but with new 1.3.6 update server stresses from problem every like from 5min to 2h it happens that all players get kick from server and trying to reconnect it writes download rustbuster ... after like 10mins everything gets fine and can connect, server...
  11. gintaras

    Approved Clans

    lol forgot to fix this...
  12. gintaras

    Need help On_Crafting()

    Aproximaly when it will be?
  13. gintaras

    Need help On_Crafting()

    i found how to change how much it needs But there is bigger problem how to show new crafting req in crafting i changed wood plank to 20 but users see 10 ofcouse they cant craft with 10 I need solution to show how much it needs in crafting table
  14. gintaras

    Need help On_Crafting()

    maybe it possible are you sure 100%?
  15. gintaras

    Need help On_Crafting()

    It is possible to change item description and some other things with http://fougerite.com/resources/stacksizes.164/ so it maybe possible to change and how much it writes on player crafting
  16. gintaras

    Need help On_Crafting()

    if CraftingEvent.ItemName=="Wood Planks Blueprint": if CraftingEvent.Ingredients[0].Ingredient.name=="Wood": CraftingEvent.Ingredients[0].amount=20 works any idea is it possible to show in crafting how much it costs?
  17. gintaras

    Need help On_Crafting()

    i=0 for key in dir(CraftingEvent.Ingredients[0].Ingredient): ini2.AddSetting("Testas", str(i),str(key)) i+=1 0=Combinations 1=CombineRecipe 2=CompareTo 3=ConstructItem 4=CreateInstance 5=CreateItem 6=Destroy 7=DestroyImmediate 8=DestroyObject...
  18. gintaras

    Need help On_Crafting()

    How to change ingridients i dont undestand i tryed to get data from on crafting with this: def On_Crafting(self, CraftingEvent): if CraftingEvent.Player.Admin: ini2 = Plugin.GetIni("TestBase") ini2.AddSetting("Testas", "Amount",str(CraftingEvent.Amount))...
  19. gintaras

    Saving plugin data on shutdown

    on plugin init Plugin.CreateTimer("SaveData", 300000).Start() def SaveDataCallback(self): Plugin.CreateTimer("SaveData", 300000).Start() Tryed not helped Dretax maybe its better for me to use Datastore? in file i save player ID and level or exp Maybe there is better solution... to use...
  20. gintaras

    Saving plugin data on shutdown

    I have arrays PluginDBWoodLVL = {} PluginDBOreLVL = {} PluginDBAnimalLVL = {} PluginDBWoodEXP = {} PluginDBOreEXP = {} PluginDBAnimalEXP = {} I saving this with timer now to file it stores player exp and level i done this to reduce procesor usage but i need save when shuting down server i have...