-
Posts
254 -
Joined
-
Last visited
Content Type
Profiles
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by Zoreeno
-
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.
-
- 60 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.
-
Starting to get a lot of reports from players that instead of the global storage box it will be a normal box when they loot it. If they try to open the box from a different angle it will sometimes work properly, and it will sometimes duplicate their items when that happens. Seems to be a consistant report over the past week or so, not sure if the recent FP update messed with anything.
-
- 1,253 comments
-
- 2
-
-
-
- #leveling
- #progression
- (and 13 more)
-
I'm not sure if the Call Heli plugin relies specifically on the $player.x.y.z call or not, but in my commands file for shop I have to use {playername} or {steamid} to have the commands work. maybe give one of these a try while you wait for David to get back to you: "Command": "callheli pos {playername}.x {playername}.y {playername}.z 1", "Command": "callheli pos {steamid}.x {steamid}.y {steamid}.z 1", We also use HeliControl on our server, but we use a different plugin to call the heli to the player with just callheli playerID and it calls the heli just above where the player is standing. So maybe this is another thing to try if the above doesn't work: "Command": "callheli {steamid}" or "Command": "callheli {playername}"