-
Posts
254 -
Joined
-
Last visited
Zoreeno's Achievements
-
Are you allowing players to receive recyclers from 2 sources intentionally? Through Extended Recyclers and Place Anything? Both plugins are probably using the same logic/method to convert the recycler to an item when a player picks one up, so it's adding an item from each plugin. You could probably remove the recycler entry from the PlaceAnything data file so that the only plugin that allows picking up a placed recycler is Extended Recyclers. or vice versa if your intention is to allow players to obtain/pick up recyclers through PlaceAnything. I wouldn't recommend using both for recycler sources. Choose one or the other.
-
- 56 comments
-
- 1
-
- #custom item
- #command item
- (and 4 more)
-
- 12 comments
-
- 1
-
- #new year
- #christmas sale
-
(and 9 more)
Tagged with:
-
I think i figured it out. It was only happening at the custom spawn locations. Seems that it's auto adding some strange rotation values on them when the /addcustomlocation command is used. If you go back into the config after it's added and change all the rotation values to 0.0 it seems to resolve it. Here is an example of one before i edited it to 0.0, that z rotation seems to be the cause. "Static box spawns on a map that can access global storage": [ { "pos": { "x": -103.16449, "y": 21.6726513, "z": -251.50322 }, "rot": { "x": 74.2019348, "y": 226.752243, "z": -6.27202826E-06 }, "enabled": true }
-
- 12 comments
-
- #new year
- #christmas sale
-
(and 9 more)
Tagged with:
-
- 12 comments
-
- #new year
- #christmas sale
-
(and 9 more)
Tagged with:
-
- 12 comments
-
- #new year
- #christmas sale
-
(and 9 more)
Tagged with:
-
- 12 comments
-
- #new year
- #christmas sale
-
(and 9 more)
Tagged with:
-
I fixed it in the .cs file by removing the "Trade" in the language call for incoming trades and changing it to trade_nopermission so that it links up with the lang file properly. But i'll leave this up because ya might want to fix that up for a future release.
-
Hey. Maybe just a small oversight here, but it doesn't appear that the plugin is talking to the language file correctly. If someone tries to initatiate a trade with someone that does not have the use permission it's not translating to the language file, intead it's printing to chat Trade_help_nopermission I can see a trade_nopermission entry in the language file that states : "{0} does not have the permission to trade." but the plugin isn't calling to it Obviously not the biggest problem in the world, but i'm trying to make my server be all fancy pancy so i want to be able to edit the message that it shows.