Search results

  1. Jakkee

    Get field

    Components from a box?
  2. Jakkee

    {SOLVED} Problem with detecting SLeepingBag on placement

    SleepingBagA is the name ;)
  3. Jakkee

    Solved New hook (RustBuster) or normal plugin...

    How do you want to kill the player? Like the admin types /kill <Player Name>? Or like if the player presses a key?
  4. Jakkee

    Solved New hook (RustBuster) or normal plugin...

    1: killing player is easy, Send a clientcommand to suicide or just Player.Kill() 2: Using RB you can create a client plugin to send the Key Presses to the server
  5. Jakkee

    Need Help With AirStrike Plugin!

    You'll have to spawn the plane, I don't think there is a way to call the plane and then remove the airdrop unless you loop over all the entities and find the airdrop and remove it
  6. Jakkee

    Fougerite Official

    Seems like the datastore possibly broken for you, Do you do restarts often? I know the time stamps numbers used todo something weird after the server had been online for more than x amount of days
  7. Jakkee

    Solved Research kit not working

    Failed to invoke method VoiceCom, Probably didn’t patch right? Or a bug. I have no idea. I don’t think that error is related to destroysystem. But for /Destroy (DestroySystem?) should be posted to that Plugins discussion thread. http://fougerite.com/threads/destroysystem.42/ I believe it could...
  8. Jakkee

    Need some help with AutoRewards Plugin PY

    That line will loop over all the items in the ini file, Might not be the best in performance but you’ll probably never notice it pl.Inventory.AddItem(x, ini.GetSetting("Items", x))
  9. Jakkee

    Supporting old rust

    But then you’d have to patch all the bugs in that version
  10. Jakkee

    Supporting old rust

    Copy the zombie code and put it into a client/server plugin Might take awhile to cut it all out
  11. Jakkee

    Solved RustBuster Client Problem

    Well that log looks like you were able to open the client just fine. Does the client have an output.log?
  12. Jakkee

    Building block plugin?

    You mean here: http://fougerite.com/forums/requests.12/
  13. Jakkee

    Approved Scheduler

    If you raid during this blocked pvp/raid time, Do you get your C4/Grenade back?
  14. Jakkee

    Why doesnt this work?????

    Whoops, Didnt scroll down far enough in your code. But still applies for both :) Just replace AND with OR in both if statements: if World.Time >= self.StartTime and World.Time <= self.EndTime: to if World.Time >= self.StartTime or World.Time <= self.EndTime:
  15. Jakkee

    Why doesnt this work?????

    Problem is here: if World.Time >= self.StartTime and World.Time <= self.EndTime: Say server time is 20, if World.Time >= 17: True! and if World.Time <= 5: False! Which means this if statement will always return false. change and to or if World.Time >= self.StartTime or World.Time <=...
  16. Jakkee

    Need some help with AutoRewards Plugin PY

    Well to start off, "Items" is not an item name :P pl.Inventory.AddItem(x, ini.GetSetting("Items", x))
  17. Jakkee

    Please help!!

    Also, Steam Auth failed. Download AuthAllow
  18. Jakkee

    Thread

    What code are you using? Also do you have Debug enabled in Fougerite.cfg?
  19. Jakkee

    Thread

    EDIT: https://github.com/jakkee/FougeritePlugins/blob/master/CSharpPlugins/CountryBlackList/CountryBlackList.cs Look at my PlayerConnected & Threaded_PlayerConnected() function
  20. Jakkee

    Thread

    I’m pretty sure you can’t print messages to console using threading, But you can still print them to the server