Jump to content

Roger93

Member
  • Posts

    130
  • Joined

  • Last visited

1 Follower

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Roger93's Achievements

Collaborator

Collaborator (7/15)

  • One Year In
  • Collaborator
  • Dedicated
  • One Month Later
  • First Post

Recent Badges

11

Reputation

  1. Roger93

    Custom plugins

    Could you give me an example of a plugin to add a custom plugin to the lootable so that you can load the loot. The idea I have is that through the lootable I can control my other plugins for example I have a plugion called itemsBox that generates boxes I want through your example that the loot is in the lootable and when it generates a box I get the loot from the lootable.
  2. Roger93

    Add Furnaces and recycler

    It would be nice to support the speeds of the recycler furnaces. Since version 1 had this possibility
  3. Roger93

    turret targets

    Hi, good morning One question how can I make the turrets shoot at the targets.
  4. Roger93

    Bug when closing the cui

    Okay, my fault, it's fixed, I had to update the panel.
  5. Roger93

    Bug when closing the cui

    El error es simple cuando tienes un articulo en la cesta para comprarlo y le das a comprar no cierra el cui seria bueno que estuviera cerrado para que no sigan comprando recording-2024-10-01-22-40-58.mp4
  6. Roger93

    Bug

    Yes
  7. Roger93

    2.0 bugs.

    Correct, I created the database correctly but it does not connect, the same thing is happening to me.
  8. Roger93

    Bug

    apply the error here https://codefling.com/files/support/14419-error-in-rcon/
  9. Roger93

    Bug

    oxide.reload MinimalistHud Unloaded plugin Minimalist Hud v1.2.0 by Ifte (Auth yun) Failed to call hook 'OnServerInitialized' on plugin 'MinimalistHud v1.2.0' (NullReferenceException: Object reference not set to an instance of an object) at Oxide.Plugins.MinimalistHud.GetConfigIcons (System.Collections.Generic.Dictionary`2[TKey,TValue] dict) [0x0007b] in <89636a4959d9423cb17ab81664b1822d>:0 at Oxide.Plugins.MinimalistHud.LoadAllImages () [0x00000] in <89636a4959d9423cb17ab81664b1822d>:0 at Oxide.Plugins.MinimalistHud.OnServerInitialized () [0x00039] in <89636a4959d9423cb17ab81664b1822d>:0 at Oxide.Plugins.MinimalistHud.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x00132] in <89636a4959d9423cb17ab81664b1822d>:0 at Oxide.Plugins.CSharpPlugin.InvokeMethod (Oxide.Core.Plugins.HookMethod method, System.Object[] args) [0x00079] in <795304323ac74a298b8ed190a1dfa739>:0 at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x000de] in <beb2b64691c64e2b95b99491bd85442c>:0 at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <beb2b64691c64e2b95b99491bd85442c>:0
    I was looking for a plugin to provide daily rewards to my players, and this plugin turned out to be a great solution. It's fantastic for encouraging daily participation by offering prizes every time players log in. The setup is simple and flexible, making it perfect for any server aiming to keep their players active and engaged.
  10. Roger93

    Bug server identity

    Thank you solved
  11. Roger93

    Bug server identity

    Hello, I just installed the new egg as I was using your previous one. However, when I changed the egg through the panel option, the server folder inside created a directory named "1" by default, even though I have the folder set to "rust" in the egg configuration. Currently, I'm using Oxide. The issue seems to be with the server.identity variable, which isn't correctly picking up the specified value. I've checked after starting the server, and the server.identity value is always "1". Could you please take a look at this? It's a very strange bug. If needed, I can send you a video.
  12. Roger93

    Error Update

    Since the last update, when buying in a vending machine, you will be removed from the game because of the following error Kick alert: RPC Error in BuyItem
  13. Roger93

    Error in Rcon

    Error Failed to call hook 'OnEconomicsBalanceUpdated' on plugin 'MinimalistHud v1.1.3' (InvalidCastException: Null object cannot be converted to a value type.) Solution 1. Locate the GetBalance function in your MinimalistHud.cs file. 2. You will find something similar to this: private double GetBalance(BasePlayer player) { if (config.economicsPlugin.ToLower() == "economics" && Economics) return Economics.Call<double>("Balance", player.userID); else if (config.economicsPlugin.ToLower() == "iqeconomic" && IQEconomic) return (double)IQEconomic.Call<int>("API_GET_BALANCE", player.userID); return 0; } 3. Replace it with the following code to handle possible null values: private double GetBalance(BasePlayer player) { if (config.economicsPlugin.ToLower() == "economics" && Economics) return Economics.Call<double>("Balance", player.userID.Get()); else if (config.economicsPlugin.ToLower() == "iqeconomic" && IQEconomic) return (double)IQEconomic.Call<int>("API_GET_BALANCE", player.userID.Get()); return 0; }
1.4m

Downloads

Total number of downloads.

6.9k

Customers

Total customers served.

102.2k

Files Sold

Total number of files sold.

2m

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.