-
Posts
104 -
Joined
-
Last visited
Content Type
Profiles
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by ZIZI
-
Hi. Yes, that's right. I thought maybe the anchor offset, the screen has already changed and the size of the interface.
-
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 (((
-
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.
- 39 comments
-
- #rust
- #sleepingbag
-
(and 3 more)
Tagged with:
-
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))).
-
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.
-
- 2 comments
-
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.
- 82 comments
-
- #stats
- #statistics
- (and 5 more)
-
- 693 comments
-
- 1
-
-
- #shop
- #shop ui
-
(and 25 more)
Tagged with:
- #shop
- #shop ui
- #store
- #market
- #server rewards
- #gui shop
- #custom items
- #rust shop
- #mevent
- #market system
- #marketplace
- #buy
- #sell
- #in game
- #economics
- #humannpc
- #market and magazine
- #gui
- #money exchange
- #rust shop plugin
- #shop system
- #best shop
- #best rust shop
- #shop items
- #shop mevent
- #shop in menu
- #shop gui
-
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 }
-
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" },
-
- 693 comments
-
- #shop
- #shop ui
-
(and 25 more)
Tagged with:
- #shop
- #shop ui
- #store
- #market
- #server rewards
- #gui shop
- #custom items
- #rust shop
- #mevent
- #market system
- #marketplace
- #buy
- #sell
- #in game
- #economics
- #humannpc
- #market and magazine
- #gui
- #money exchange
- #rust shop plugin
- #shop system
- #best shop
- #best rust shop
- #shop items
- #shop mevent
- #shop in menu
- #shop gui
-
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.
-
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");
-
Yes, of course it’s interesting, I’ll be glad to have this option even at the testing stage.
-
- 693 comments
-
- 2
-
-
- #shop
- #shop ui
-
(and 25 more)
Tagged with:
- #shop
- #shop ui
- #store
- #market
- #server rewards
- #gui shop
- #custom items
- #rust shop
- #mevent
- #market system
- #marketplace
- #buy
- #sell
- #in game
- #economics
- #humannpc
- #market and magazine
- #gui
- #money exchange
- #rust shop plugin
- #shop system
- #best shop
- #best rust shop
- #shop items
- #shop mevent
- #shop in menu
- #shop gui
-
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.
-
Hi. How is it possible to convey an icon of an object instead of a picture?
-
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
-
"Number of digits after decimal point for rounding prices": 5 Doesn't work, the economics plugin shows and calculates correctly from other plugins
-
Hello. How do I change the rounding to 0.0000?
-
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.
-
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.