-
Posts
316 -
Joined
-
Last visited
Content Type
Profiles
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by papi
-
could be from drug business plugin i will remove them
-
The following image ID's are in ImageLibrary "ImageID1_0": "2341879970", "ImageID2_0": "288044601", "ImageID3_0": "1520789830", "ImageID4_0": "700902369" Not sure why it's added with a _0
-
All URL's added by other plugins are from https:\\ links
-
Your images are unencrypted URL's and not being added by ImageLibrary storedData = Interface.Oxide.DataFileSystem.ReadObject<StoredData>("TutorialDisplayData"); var success = ImageLibrary?.Call("AddImage", "http://www.image-heberg.fr/files/16979388842771375397.png", "ImageID1"); if (success == null || !(bool)success) { Puts("Failed to load ImageID1"); }
-
I agree it's probably a regional issue getting these files from your host. 1. How can I disable the image placeholder in your plugin; or 2. change the URL's to a file location that is local on the server? ImageLibrary?.Call("AddImage", "C:\\rustserver\server\Apocalypse\image1.png", "ImageID1");
-
-
-
I am on a dedicated server. There are multiple plugins using ImageLibray but no errrors in console. My config is the default one for testing. What path would i use for local directory? private void OnServerInitialized() { storedData = Interface.Oxide.DataFileSystem.ReadObject<StoredData>("TutorialDisplayData"); ImageLibrary?.Call("AddImage", "C:\rustserver\server\Apocalypse\image1.png", "ImageID1"); ImageLibrary?.Call("AddImage", "C:\rustserver\server\Apocalypse\image2.png", "ImageID2"); ImageLibrary?.Call("AddImage", "C:\rustserver\server\Apocalypse\image3.png", "ImageID3"); ImageLibrary?.Call("AddImage", "http://www.image-heberg.fr/files/16979779363922503647.png", "ImageID4"); LoadConfigData(); TutorialDisplay.json
-
I have tried everything to get the images to load but nothing works. Do the images get stored by Image Library? I did a refreshall onj ImageLibrary thinking this was not downloading them for some reason. I changed the images to imgur url's and then dropbox files but nothing worked How can I disable the image placeholder so atleast i can use the text pop-up. Or format for files to be loaded fromj the server locally.
-
-
(08:38:14) | Error while compiling JetEvent: Argument 1: cannot convert from 'PlayerCorpse' to 'ItemContainer' | Line: 3287, Pos: 46
-
-
-
-
-
using /tutorial off temporarily removes the tutorial but it coems straight back on again
-
-
-
- 8 comments
-
- #railway
- #railway monument
- (and 10 more)
-
- 8 comments
-
- #railway
- #railway monument
- (and 10 more)
-
I have noticed that console commands only work for the local console and not rcon Is there any way to make them work over rcon aswell? It means i can't make players wanted using commands sent from the server. The only way currently is to set a player wanted in game which isn't great. Players are also not getting wanted status when killing or harming NPC's which is frstrating.
-