Rust Money GUI

Discussion in 'Plugin Requests' started by Norn, Aug 27, 2015.

  1. Can someone make me a simple money bar gui?

    Just a simple text somewhere that I can modify, etc "$100".

    I can't seem to wrap my head around the gui system.

    Don't need any functionality, just the actual gui.

    Thanks
     
  2. There you go. Already got some functionality with it.
    [DOUBLEPOST=1440708201][/DOUBLEPOST]I think you should be able to add the list of Money using:
    Code:
    Dictionary<BasePlayer, int> money = new Dictionary<BasePlayer, int>();
    money.Add(BasePlayer.Find("Norn") , 539);
    Plugin moneyGui = plugins.Find("MoneyAmountGUI");
    moneyGui.Call("ImportMoneyData", money);
    even without changing anything at the plugin and calling it from another. Anyways you could also implement the code into yours. Im not sure if you were using CSharp or Lua.
     

    Attached Files:

    Last edited by a moderator: Oct 12, 2015