Search results

  1. Viproz

    Important [OLD] Setup dev environment for C# plugins

    Here is a tutorial on, for me, the best part of Fougerite, the C# plugins ! We are going to learn how to setup the dev environment I - Requirement - The server files or at least the dlls - xamarin studio, get it from here : http://monodevelop.com/download so you don't have to install all of...
  2. Viproz

    Compare your computer systems!

    I'll show you my beast, next to mine your configs are nothing ! CPU: Intel(R) Core(TM)2 Duo CPU E6750 @ 2.66GHz CPU Cooler: Factory Motherboard: Asus P5KPL Memory: 2 x DIMM DDR2 Synchrone 800 MHz 1 giB Storage: ST1000DM003-9YN1 1tB Video Card: GeForce 8800 GTS Case: Medium Wavy Case (MWC)...
  3. Viproz

    Solved Compiling Fougerite

    Thanks that seems to work really well, just need to find a way to run the server on linux now :)
  4. Viproz

    IRC Server ?

    I was wondering if there were a IRC channel already, if not it would be cool to have one to be able to quickly communicate about plugin stuff or such :)
  5. Viproz

    Solved Compiling Fougerite

    The only thing I have again the xamarin given here : http://xamarin.com/download is that to install it you need to install the Android SDK IOS and Java ;) For the plugins, I figured about the 3.5 by looking in the others plugins but didn't know about the msbuild stuff, I'll change that right now...
  6. Viproz

    Solved Compiling Fougerite

    Thanks just installed monodevelop http://monodevelop.com/download (xamarin for desktop only if I understood correctly) and everything works, I was able to compile and run my first Fougerite plugin ! :)
  7. Viproz

    Solved Compiling Fougerite

    Okay the patcher got me once, I was entering the -1 after launching the program and it said that all was good, made a pull request to be able to do that : https://github.com/fougerite/Fougerite/pull/56 For xamarin I can't find a version that does not include all the stuff for android and co, I...
  8. Viproz

    reason why it somthimes wont work?

    What is the function getHackerIP ? If you coul paste getHackerID too to see the diffrences it would be cool :)
  9. Viproz

    Solved Compiling Fougerite

    Hello ! I was looking a bit into the sources of Fougerite to learn a bit (I don't really know C# yet so reading is always good :)) and so I tried to compile it but I'm getting errors in Visual Studio 2013 : - Erreur 1 'StructureMaster._structureComponents' est inaccessible en raison de...
  10. Viproz

    clothing.

    There is no event for it in my knowledge, you'll need to check with a timer in my opinion
  11. Viproz

    Get the lastest Rust Server dlls

    Nice thanks for the -nographics arg it works like a charm ! For the paths, it's just a bug with the log, in reality it does not search for theses paths, you can see exactly where it it searching by adding "strace -o readlog -Ff -tt " before the command, the logs of the file accessed will be in...
  12. Viproz

    Get the lastest Rust Server dlls

    I'm running in a wall here as you can see in the log, if you have an idea let me know ;) My search just finished, there is the text Cluster_Cycle in Assembly-CSharp-firstpass.dll (don't know if it's useful to know that) : viproz@Viproz-System:~/rust_dedicated$ grep -i Cluster_Cycle * -r Fichier...
  13. Viproz

    Get the lastest Rust Server dlls

    To be honest I think they forgot to remove them cause you can't get them on windows (there is just a txt file saying it's the wrong branch) :D For the server, the log file contains lies, it's not at all what's happening, you can see what's happening by running this : strac-o readlog -Ff -tt...
  14. Viproz

    Get the lastest Rust Server dlls

    I'm getting the exact same log if I launch the x86 or the x86_64, I'm on amd64, I'll try on my i386 ubuntu
  15. Viproz

    Get the lastest Rust Server dlls

    I can confirm that launching the server works when you connect to your server with "ssh -X ip" but does not when you don't use the arg, that's a really annoying bug since it shouldn't look for a Display when we use -batchmode Here is the logs I'm getting when there is a correct Display : ibGL...
  16. Viproz

    Get the lastest Rust Server dlls

    ./rust_server.x86_64 -batchmode -logFile test But I just tested on my dedicated server (running debian jessie) and even with the -batchmode arg (btw it's weird to write batch instead on bash) it want's a valid X server so you have to use a remote desktop on windows or run ssh with -X arg on...
  17. Viproz

    Get the lastest Rust Server dlls

    There is no Plugins folder and the server is looking for the librust (or librust.so) in rust_server_Data/Mono/x86_64/ :s
  18. Viproz

    Get the lastest Rust Server dlls

    This tutorial will explain how to get the non-experimental dlls easily and not against any rules. Requirements : - A linux PC or server or VirtualMachine I - Installation of SteamCMD (this part will be based on https://developer.valvesoftware.com/wiki/SteamCMD) I'm skipping the new user step...
  19. Viproz

    C# and rust experimental

    Hi, I was looking into your server mod and was wondering if there will be a version for experimental rust soon ? Also you're speaking about C# plugins, this could simplify a lot of things if we can directly use the rust c# functions without having to worry about bugs but is there any exemple ...