how is the moth_socket used?
i tried using this together with a daemon head but i have no idea what activates this thing.....
could someone tell me?
mouth_socket . how is it used?
-
- Posts: 13
- Joined: Sun Jun 24, 2012 11:49 pm
Re: mouth_socket . how is it used?
well i know in the actual game it was a red gem.. now rather or not if that's still the case or you have to write out a LUA script for it or not.. I'm not quite sure. wish I could help more.velojun wrote:how is the moth_socket used?
i tried using this together with a daemon head but i have no idea what activates this thing.....
could someone tell me?
Re: mouth_socket . how is it used?
viewtopic.php?f=14&t=3087&hilit=eye+gem&start=10
its hidden in this post second page I think (if I havent linked it right)
its hidden in this post second page I think (if I havent linked it right)
Re: mouth_socket . how is it used?
I looked, checked the post twice, even checked the link on page2 (the page you linked to) and i cant find anything about the mouth_socket,Shroom wrote:viewtopic.php?f=14&t=3087&hilit=eye+gem&start=10
its hidden in this post second page I think (if I havent linked it right)
and also I cant insert a red gem into it .....
I'm kinda lost here
Re: mouth_socket . how is it used?
My bad - i was thinking of eye sockets
Re: mouth_socket . how is it used?
well, in the game it was the green gem, maybe it's hardcoded?
Finished Dungeons - complete mods to play
- Montis
- Posts: 340
- Joined: Sun Apr 15, 2012 1:25 am
- Location: Grimrock II 2nd playthrough (hard/oldschool)
Re: mouth_socket . how is it used?
the posts there are about eye sockets, and they should work the same as mouth sockets. you just have to adapt the code a bit.velojun wrote:I looked, checked the post twice, even checked the link on page2 (the page you linked to) and i cant find anything about the mouth_socket,Shroom wrote:viewtopic.php?f=14&t=3087&hilit=eye+gem&start=10
its hidden in this post second page I think (if I havent linked it right)
and also I cant insert a red gem into it .....
I'm kinda lost here
Re: mouth_socket . how is it used?
Ifigured it out , yeah i didn't know it was the green gem...
thanks
thanks
Re: mouth_socket . how is it used?
If you want to use something other then a green gem in the mouth:
However, fair warning, it's not without it's issues as I've discovered with the sockets. It'll let you insert any gem, and you can keep on inserting them...
Code: Select all
cloneObject{
name = "multi_mouth_socket",
baseObject = "mouth_socket",
onInsertItem = function()
print("Gem inserted mouth.")
return true
end,
}