Page 1 of 1

mouth_socket . how is it used?

Posted: Sat Sep 15, 2012 9:06 am
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?

Re: mouth_socket . how is it used?

Posted: Sat Sep 15, 2012 9:45 am
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.

Re: mouth_socket . how is it used?

Posted: Sat Sep 15, 2012 10:22 am
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)

Re: mouth_socket . how is it used?

Posted: Sat Sep 15, 2012 10:52 am
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

Re: mouth_socket . how is it used?

Posted: Sat Sep 15, 2012 11:03 am
by Shroom
My bad - i was thinking of eye sockets

Re: mouth_socket . how is it used?

Posted: Sat Sep 15, 2012 11:54 am
by Komag
well, in the game it was the green gem, maybe it's hardcoded?

Re: mouth_socket . how is it used?

Posted: Sat Sep 15, 2012 12:03 pm
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.

Re: mouth_socket . how is it used?

Posted: Sat Sep 15, 2012 12:12 pm
by velojun
Ifigured it out , yeah i didn't know it was the green gem...
thanks

Re: mouth_socket . how is it used?

Posted: Sat Sep 15, 2012 1:45 pm
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: