mouth_socket . how is it used?

Talk about creating Grimrock 1 levels and mods here. Warning: forum contains spoilers!
Post Reply
velojun
Posts: 19
Joined: Sat Sep 15, 2012 9:02 am

mouth_socket . how is it used?

Post by velojun »

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?
The Real Pyxx
Posts: 13
Joined: Sun Jun 24, 2012 11:49 pm

Re: mouth_socket . how is it used?

Post by The Real Pyxx »

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?
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.
User avatar
Shroom
Posts: 98
Joined: Tue Mar 27, 2012 6:37 pm
Location: UK

Re: mouth_socket . how is it used?

Post by Shroom »

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)
velojun
Posts: 19
Joined: Sat Sep 15, 2012 9:02 am

Re: mouth_socket . how is it used?

Post by velojun »

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)
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,
and also I cant insert a red gem into it .....
I'm kinda lost here
User avatar
Shroom
Posts: 98
Joined: Tue Mar 27, 2012 6:37 pm
Location: UK

Re: mouth_socket . how is it used?

Post by Shroom »

My bad - i was thinking of eye sockets
User avatar
Komag
Posts: 3658
Joined: Sat Jul 28, 2012 4:55 pm
Location: Boston, USA

Re: mouth_socket . how is it used?

Post by Komag »

well, in the game it was the green gem, maybe it's hardcoded?
Finished Dungeons - complete mods to play
User avatar
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?

Post by Montis »

velojun wrote:
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)
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,
and also I cant insert a red gem into it .....
I'm kinda lost here
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.
When destiny calls, the chosen have no choice.

My completed dungeon (LoG1): Hypercube
velojun
Posts: 19
Joined: Sat Sep 15, 2012 9:02 am

Re: mouth_socket . how is it used?

Post by velojun »

Ifigured it out , yeah i didn't know it was the green gem...
thanks
Aazlan
Posts: 13
Joined: Thu Sep 13, 2012 6:59 pm

Re: mouth_socket . how is it used?

Post by Aazlan »

If you want to use something other then a green gem in the mouth:

Code: Select all

cloneObject{
		name = "multi_mouth_socket",
		baseObject = "mouth_socket",
		onInsertItem = function()
		 print("Gem inserted mouth.")
		 return true
		end,

}
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... :oops:
Post Reply