Ty that did work but im getting 2 x ratling spawning instead of just 1 ratling lol. At least the error is gone but I don't know why its spawning 2 ratlings it should be only one. Its the same code as above plus the new code you gave me tyIsaac wrote: ↑Wed Sep 25, 2019 7:01 am I cannot easily test this... but you can.Is it possible that the md_npc_ratling2_2:destroy() function is called twice?Code: Select all
function killnpc01a() if md_npc_ratling2_2 then md_npc_ratling2_2:destroy() end end
It IS the case that a monsters removal after calling destroy() is not instantaneous. It remains an object for a minute but significant amount of time afterwards.
Ask a simple question, get a simple answer
- Eleven Warrior
- Posts: 745
- Joined: Thu Apr 18, 2013 2:32 pm
- Location: Australia
Re: Ask a simple question, get a simple answer
Re: Ask a simple question, get a simple answer
Does someone know where to get the Grimrock 2 dungeon file or "dungeon.lua" Has anyone ever recreated it?
Re: Ask a simple question, get a simple answer
cowmuffins.net/priv/grimrock2.zip
Re: Ask a simple question, get a simple answer
Technically it's part of the game. You can create a new editor project, (arbitrarily) call it Grimrock2, and save it. Open the .dungeon_editor file from the mod folder, in a text editor, and change the information to match this:
Save it, and load it like any other project.
—However... this project is read only. You won't be able to save changes.
Code: Select all
dungeonName "Grimrock 2"
author "Almost Human"
description "The official campaign"
dungeonFolder "assets/dungeons/grimrock2"
—However... this project is read only. You won't be able to save changes.
SpoilerShow
The important line change, is the path to the asset folder.
Code: Select all
dungeonFolder "assets/dungeons/grimrock2"
- Eleven Warrior
- Posts: 745
- Joined: Thu Apr 18, 2013 2:32 pm
- Location: Australia
Re: Ask a simple question, get a simple answer
How do I get the world position of altar_1 and print its position?
EDIT: Thank you Isaac
EDIT: Thank you Isaac
Last edited by Eleven Warrior on Sun Sep 29, 2019 1:14 am, edited 1 time in total.
Re: Ask a simple question, get a simple answer
Eleven Warrior wrote: ↑Sat Sep 28, 2019 8:04 am How do I get the world position of altar_1 and print its position?
Code: Select all
print(altar_1:getWorldPosition())
Re: Ask a simple question, get a simple answer
Is there a simple script that can detect the "difficulty" that the player has chosen?
if Difficulty = Normal
then spawn Normal reward()
Something like that.
if Difficulty = Normal
then spawn Normal reward()
Something like that.
- Zo Kath Ra
- Posts: 937
- Joined: Sat Apr 21, 2012 9:57 am
- Location: Germany
Re: Ask a simple question, get a simple answer
Unread post by vanblam » Fri Sep 27, 2019 10:18 am
Does someone know where to get the Grimrock 2 dungeon file or "dungeon.lua" Has anyone ever recreated it?
Take Magic of Grimrock editor files on Nexus The dungeon.lua and plus in the file
Sorry for the poor english
Does someone know where to get the Grimrock 2 dungeon file or "dungeon.lua" Has anyone ever recreated it?
Take Magic of Grimrock editor files on Nexus The dungeon.lua and plus in the file
Sorry for the poor english
- Eleven Warrior
- Posts: 745
- Joined: Thu Apr 18, 2013 2:32 pm
- Location: Australia
Re: Ask a simple question, get a simple answer
I know there is a script here that when you destroy a barrel it will spawn random food items can someone help me ty