Leaderboard


Popular Content

Showing content with the highest reputation on 10/12/2019 in Posts

  1. 1 point
    Hello! I just thought about informing the local denizens of Deadlystream about a great modification that has recently been released which upscales through ESRGAN a huge number of in-game textures. A new version, according to the author is in the works and will add 750 more, making the upscaling practically apply to each single texture used in the game. I have tested the results myself and it's impressive. Cheers!
  2. 1 point
  3. 1 point
    You don't want to do that by the way. You want to create a MOD and inject your changes into that. Edit: Try this @Stormie97 and see if it works (you'll need to add your item's template name and compile it): void main() { object oStore = GetObjectByTag("m_202_001", 0); // To make sure the item only spawns once, check Dendis for the presence of // a custom local boolean we'll create. If it returns false, spawn the item. // Since the DLG we are firing the script from is owned by Dendis, we can use // OBJECT_SELF for any call that requires a target object, like the boolean set/get. if (!GetLocalBoolean(OBJECT_SELF, 66)) { // The check returned false, so set the boolean to true so that the // item won't spawn a second time on future triggers of this script. SetLocalBoolean(OBJECT_SELF, 66, TRUE); // Create the item in the store's inventory. The values are of the form: // Item template resref (string) / target (object) / item stack size (int) CreateItemOnObject("item_template_here", oStore, 1); } } After compiling it, you'll also need to edit Dendis's DLG and add the script name to one of the nodes. I would put it in the Script #2 slot on Reply 9 ("Just let me shop"). Just make sure not to replace any existing script.
  4. 1 point
    The way these screens are looking it's almost like the game is getting an HD remaster. Excellent work, SH!
  5. 1 point
    It looks better than the cutscene! Excellent work, SH.