Jump to content

ZIZI

Member
  • Posts

    104
  • Joined

  • Last visited

Everything posted by ZIZI

  1. ZIZI

    I can't add an item

    Hi. Yes, that's right. I thought maybe the anchor offset, the screen has already changed and the size of the interface.
  2. ZIZI

    I can't add an item

    There is a + to add a product category. And the product itself in the category I can't figure out how to add no button (((
  3. ZIZI

    BetterBeds

    The plugin works but incorrectly with respect to global settings. He must change the number of sleeping bags regardless of the server settings. In this case, there is confusion. To increase the number of VIP sleeping bags, you need to change the global variable of the server, and then an ordinary player sees that you can put more but can't and a lot of questions constantly arise.
  4. ZIZI

    Description

    By default, everything is correctly implemented in the plugin, the only thing is that if the description is large, then it does not fit. I can add a function myself when I click the product description button, for example, a 400x400 popup window. But the fact is that with each update of the plugin, I will have to constantly edit for myself. It's inconvenient))).
  5. ZIZI

    Description

    For example, we go to the subscription category. And there are several types of VIP subscriptions. The subscription contains a package of privileges, and I would like that when the player clicks on the "i" button in the pop-up window to display a list of privileges.
  6. ZIZI

    Cupboard auths

    Hi. The plugin is able to manage restrictions, for example, I have a DUO server, and when the players are in a team, the third player will not be able to register in the tool cabinet until he enters the room, and some other one does not leave it?
  7. ZIZI

    Better Statistics

    Hi. The developer has tried very hard on the plugin, but it has a huge drawback!!! More than one correct hoster will not give access to MSQL outside the local host in order to secure not only the client's database but also his own. In this case, all this can work only if you deploy MSQL on your server and open the port for access to your host, but this is very unsafe. The most reliable and flexible solution is to form an MSQL query with data in a file and send it to the host, where the PHP operator runs and updates the database. Maybe there are some other working options, but I wrote a similar plugin using this algorithm.
  8. ZIZI

    Shop

    I have been using the plugin for more than a year, it has had many additions and has become even more flexible. The author is on top, always helps with some issues, and implements the proposed functions if they are logical!!!
  9. ZIZI

    Description

    Hi. Please, you can make a few edits to the product card in the description section, when you click the <i> button, a larger window opens to display more descriptions, this is necessary for kits. I would suggest making a more global contribution in the future (this is time-consuming). Each product has its own ID, when creating a description, create a separate description file in data (Description.json) it will only contain an example: { "ID1746686384"[ //product ID from the configuration file {"Description": "your description is 500 characters long"} //my description ], "ID564668"[ //product ID from the configuration file {"Description": "your description is 500 characters long"} //my description ], ..... and so on }
  10. Hi. The screenshot shows that my prices and balance are calculated from thousandths. The plugin works correctly, but it may be possible to filter the number of zeros after integers. Example 0.2500 or 0.2520 apply a filter to trim the last two zeros and become 0.25 and 0.252, but did not affect prices with values of 0.0002, that is, did not do as 0.00 or 0? It is clear that in order to display in this format, I have these settings: "Formatting Settings": { "Buy Price Format": "0.0000", "Sell Price Format": "0.0000", "Shopping Bag Cost Format": "0.0000", "Balance Format": "0.0000" },
  11. ZIZI

    Simple Status

    The plugin helped me out a lot and saved my time. SimpleStatus 1.1.1 is very convenient and flexible to use. The plugin developer is very responsive!!!
  12. A white square instead of a picture is AddImage("https://i.imgur.com/2n5BEyj.png", "building"); SimpleStatus.CallHook("CreateStatus", this, "building", "0.35490 0.40980 0.24510 1", "", "0.69804 0.83137 0.46667 1", " RP", "1 1 1 1", "building", "1 1 1 1"); The second picture below "box" is itemid:1189981699 (SimpleStatus.CallHook("CreateStatus", this, "1189981699", "0.35490 0.40980 0.24510 1", "", "0.69804 0.83137 0.46667 1", " RP", "1 1 1 1", "itemid:1189981699", "1 1 1 1"); If CuiImageComponent is converted to CuiRawImageComponent, then the image is displayed normally but does not display sprites.
  13. Hi. Everything works fine in the new version, I just can't understand why the picture is filled with solid color. What needs to be done? AddImage("https://i.imgur.com/2n5BEyj.png", "building");
  14. Yes, of course it’s interesting, I’ll be glad to have this option even at the testing stage.
  15. ZIZI

    Shop

    File config "Formatting Settings": { "Buy Price Format": "0.0000", "Sell Price Format": "0.0000", "Shopping Bag Cost Format": "0.0000", "Balance Format": "0.0000"
  16. More precisely, for example, I get the identifier 1533551194 clone.white.berry and in the usual case I output: new CuiImageComponent() { ItemId = 1533551194 ........ How can I implement using your code? I’ve been fighting for two weeks now and accidentally saw what you did, it’s cool when the main block of information appears and lifts your block up.
  17. Hi. How is it possible to convey an icon of an object instead of a picture?
  18. ZIZI

    price rounding

    I figured it out: My configuration was transferred from 2.6.1 however if you change: "Formatting Settings": { "Buy Price Format": "0.0000", "Sell Price Format": "0.0000", "Shopping Bag Cost Format": "0.0000", "Balance Format": "0.0000" }, it correctly displays only product prices, and the player’s balance is only 0.00 I propose to add additional changes to the configuration to adjust the display of the correct player balance data: return Math.Round(Convert.ToDouble(plugin.Call(BalanceHook, player.userID)), 2); change on => return Math.Round(Convert.ToDouble(plugin.Call(BalanceHook, player.userID)), 5); ///_config.RoundFormatting
  19. ZIZI

    price rounding

    "Number of digits after decimal point for rounding prices": 5 Doesn't work, the economics plugin shows and calculates correctly from other plugins
  20. ZIZI

    price rounding

    Hello. How do I change the rounding to 0.0000?
  21. Failed to call hook 'cmdConsoleUI_GLM' on plugin 'GatherLootMultiplier v1.3.5' (ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index) at System.Collections.Generic.List`1[T].get_Item (System.Int32 index) [0x00009] in <47fc8c70fa834cbf8141d7c1a7589125>:0 at Oxide.Plugins.GatherLootMultiplier.ShowUIPersonalRates (BasePlayer player, System.Int32 customRatePage, System.Int32 page) [0x0003f] in <df07132d32604e52a4a5bf894f2d3a6d>:0 at Oxide.Plugins.GatherLootMultiplier.cmdConsoleUI_GLM (ConsoleSystem+Arg arg) [0x00435] in <df07132d32604e52a4a5bf894f2d3a6d>:0 at Oxide.Plugins.GatherLootMultiplier.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x008e6] in <df07132d32604e52a4a5bf894f2d3a6d>:0 at Oxide.Plugins.CSharpPlugin.InvokeMethod (Oxide.Core.Plugins.HookMethod method, System.Object[] args) [0x00079] in <87ce9ac9776a48658bc55eae6debe38b>:0 at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x000d8] in <18d4f19bbc844191b11ed9e69284d09b>:0 at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <18d4f19bbc844191b11ed9e69284d09b>:0 (13:01:04) | Failed to call hook 'cmdConsoleUI_GLM' on plugin 'GatherLootMultiplier v1.3.5' (ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index) at System.Collections.Generic.List`1[T].get_Item (System.Int32 index) [0x00009] in <47fc8c70fa834cbf8141d7c1a7589125>:0 at Oxide.Plugins.GatherLootMultiplier.ShowUIPersonalRates (BasePlayer player, System.Int32 customRatePage, System.Int32 page) [0x0003f] in <df07132d32604e52a4a5bf894f2d3a6d>:0 at Oxide.Plugins.GatherLootMultiplier.cmdConsoleUI_GLM (ConsoleSystem+Arg arg) [0x00435] in <df07132d32604e52a4a5bf894f2d3a6d>:0 at Oxide.Plugins.GatherLootMultiplier.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x008e6] in <df07132d32604e52a4a5bf894f2d3a6d>:0 at Oxide.Plugins.CSharpPlugin.InvokeMethod (Oxide.Core.Plugins.HookMethod method, System.Object[] args) [0x00079] in <87ce9ac9776a48658bc55eae6debe38b>:0 at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x000d8] in <18d4f19bbc844191b11ed9e69284d09b>:0 at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <18d4f19bbc844191b11ed9e69284d09b>:0 Hello. As you understand from the drop-down error, if you delete an element from the list, starting from 5, the list does not delete it at all.
  22. ZIZI

    List view problem

    Hello. List restriction detected. If there are more than 2 lists, then this is already a problem. They are not displayed, or rather, it does not move from list 2 to list 3 and beyond.
1.8m

Downloads

Total number of downloads.

8.2k

Customers

Total customers served.

123.7k

Files Sold

Total number of files sold.

2.6m

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.