Jump to content

[Game Update] - (BETA) 194044


Recommended Posts

12 hours ago, TemporaryMan said:

He also gives candy for regular trinkets and meat.  More if you're in costume.

Does that mean wearing a follower costume skin or wearing one of the top hat skins or wearing one of the character specific costumes or all of these?

Link to comment
Share on other sites

4 hours ago, alainmcd said:

@Michi01, only if you're wearing a base costume (e.g. Dear Fridge).

it took me a moment to realise you were talking about Wigfrid and not me...

This happens more often that you would think, actually. I should be used to this by now.

 

Also, I'm having the same thing, @Michi01. Things have been rather unstable with the whole Klei server business, eh?

Edited by WishIHadAFridge
  • Like 3
Link to comment
Share on other sites

19 minutes ago, Michi01 said:

any klei server issues in europe currently? never have been unable to press play before, I only had issues with connecting to servers before so this is worrying me http://steamcommunity.com/sharedfiles/filedetails/?id=784625232

Watching a twitch stream currently and people there seem to be fine but another person in the chat that is also from Germany is having issues as well...
Maybe it's like that thing with the Ukraine but in another area now because I'm getting the same message as people from that thread and I've never gotten it before.

Edited by Michi01
Link to comment
Share on other sites

1 hour ago, WishIHadAFridge said:

it took me a moment to realise you were talking about Wigfrid and not me...

This happens more often that you would think, actually. I should be used to this by now.

 

Also, I'm having the same thing, @Michi01. Things have been rather unstable with the whole Klei server business, eh?

Of course you're not Dear Fridge, you don't have a fridge, you just wish for one.

  • Like 2
Link to comment
Share on other sites

19 minutes ago, Rellimarual said:

Did you ever get a fridge? I had to buy a new one recently and it made me wonder about your plight.

Did you really think about me? Wow, didn't think I was that big of a figure here... (Starts blushing)

But eh, no, I never got one... I still can't afford one. They aren't as cheap as in the DS world, ya'know?

Link to comment
Share on other sites

Well, I finally found the Pig King.  And he gave me NINE candies!  Which...I ate while on the run from Deerclops 'cos the Hallowed Nights happened to hit during winter for me.  : P

9...Willow stole 9 candies from the Pig King.  And that's terrible.

(and burned down the forest, but that's not important right now.)

...Notorious

  • Like 2
Link to comment
Share on other sites

On 21/10/2016 at 1:20 AM, Instant-Noodles said:

Just to add on to what @spiderdian posted above.

Halloween Candy (They also act as Catcoon Toys & Mole Bait)

  Reveal hidden contents

halloweencandy_1.png halloweencandy_2.png halloweencandy_3.png halloweencandy_4.png halloweencandy_5.png halloweencandy_6.png halloweencandy_7.png halloweencandy_8.png halloweencandy_9.png halloweencandy_10.png halloweencandy_11.png

Halloween Candy Strings

  Reveal hidden contents

HALLOWEENCANDY_1 = "Candy Apple",
HALLOWEENCANDY_2 = "Candy Corn",
HALLOWEENCANDY_3 = "Not-So-Candy Corn",
HALLOWEENCANDY_4 = "Gummy Spider",
HALLOWEENCANDY_5 = "Catcoon Candy",
HALLOWEENCANDY_6 = "\"Raisins\"",
HALLOWEENCANDY_7 = "Raisins",
HALLOWEENCANDY_8 = "Ghost Pop",
HALLOWEENCANDY_9 = "Jelly Worm",
HALLOWEENCANDY_10 = "Tentacle Lolli",
HALLOWEENCANDY_11 = "Choco Pigs",

Candy Bag (1 Rope / 1 Silk to make)

  Reveal hidden contents

candybag.png

CANDYBAG = "Only carries Hallowed Nights goodies.",

Halloween Trinkets (Pig King gives no gold for these)

  Reveal hidden contents

trinket_32.png trinket_33.png trinket_34.png trinket_35.png trinket_36.png trinket_37.png

Halloween Trinket Strings

  Reveal hidden contents

TRINKET_32 = "Cubic Zirconia Ball", -- Crystal Ball
TRINKET_33 = "Spider Ring", -- Spider Ring
TRINKET_34 = "Monkey Paw", -- Hand / Monkey Paw?
TRINKET_35 = "Empty Elixir", -- Empty Potion Bottle
TRINKET_36 = "Faux Fangs", -- Vampire Teeth
TRINKET_37 = "Broken Stake", -- Wooden Stake

The Pig King gives out candies during the Hallowed Nights event.  More candy if in costume!

  Reveal hidden contents


if IsSpecialEventActive(SPECIAL_EVENTS.HALLOWED_NIGHTS) then
		-- pick out up to 3 types of candies to throw out
		local candytypes = { math.random(NUM_HALLOWEENCANDY), math.random(NUM_HALLOWEENCANDY), math.random(NUM_HALLOWEENCANDY) }

		local numcandies = item.components.tradable.halloweencandyvalue or 1
		numcandies = numcandies + math.random(2)

		-- only people in costumes get a good amount of candy!		
		if giver ~= nil and giver:IsValid() and giver.components.skinner ~= nil then
			local costume = giver.components.skinner:GetClothing().base
			if costume ~= nil and costume ~= "" and Prefabs[costume] ~= nil and table.contains(Prefabs[costume].tags, "COSTUME") then
				numcandies = numcandies + math.random(4) + 1
			end
		end
		
		for k = 1, numcandies do
			local candy = SpawnPrefab("halloweencandy_"..GetRandomItem(candytypes))
			local pt = Vector3(inst.Transform:GetWorldPosition()) + Vector3(0, 4.5, 0)

			candy.Transform:SetPosition(pt:Get())
			local down = TheCamera:GetDownVec()
			local angle = math.atan2(down.z, down.x) + (math.random() * 60 - 30) * DEGREES
			local sp = math.random() * 4 + 2
			candy.Physics:SetVel(sp * math.cos(angle), math.random() * 2 + 8, sp * math.sin(angle))
		end
	end

 

Halloween Loading Screens

  Reveal hidden contents

bg_image1_resize.png

bg_image2_resize.png

bg_image3_resize.png

 

This stuff is forever ? or just for this Halloween?

Link to comment
Share on other sites

On 21/10/2016 at 1:20 AM, Instant-Noodles said:

Just to add on to what @spiderdian posted above.

Halloween Candy (They also act as Catcoon Toys & Mole Bait)

  Reveal hidden contents

halloweencandy_1.png halloweencandy_2.png halloweencandy_3.png halloweencandy_4.png halloweencandy_5.png halloweencandy_6.png halloweencandy_7.png halloweencandy_8.png halloweencandy_9.png halloweencandy_10.png halloweencandy_11.png

Halloween Candy Strings

  Reveal hidden contents

HALLOWEENCANDY_1 = "Candy Apple",
HALLOWEENCANDY_2 = "Candy Corn",
HALLOWEENCANDY_3 = "Not-So-Candy Corn",
HALLOWEENCANDY_4 = "Gummy Spider",
HALLOWEENCANDY_5 = "Catcoon Candy",
HALLOWEENCANDY_6 = "\"Raisins\"",
HALLOWEENCANDY_7 = "Raisins",
HALLOWEENCANDY_8 = "Ghost Pop",
HALLOWEENCANDY_9 = "Jelly Worm",
HALLOWEENCANDY_10 = "Tentacle Lolli",
HALLOWEENCANDY_11 = "Choco Pigs",

Candy Bag (1 Rope / 1 Silk to make)

  Reveal hidden contents

candybag.png

CANDYBAG = "Only carries Hallowed Nights goodies.",

Halloween Trinkets (Pig King gives no gold for these)

  Reveal hidden contents

trinket_32.png trinket_33.png trinket_34.png trinket_35.png trinket_36.png trinket_37.png

Halloween Trinket Strings

  Reveal hidden contents

TRINKET_32 = "Cubic Zirconia Ball", -- Crystal Ball
TRINKET_33 = "Spider Ring", -- Spider Ring
TRINKET_34 = "Monkey Paw", -- Hand / Monkey Paw?
TRINKET_35 = "Empty Elixir", -- Empty Potion Bottle
TRINKET_36 = "Faux Fangs", -- Vampire Teeth
TRINKET_37 = "Broken Stake", -- Wooden Stake

The Pig King gives out candies during the Hallowed Nights event.  More candy if in costume!

  Reveal hidden contents


if IsSpecialEventActive(SPECIAL_EVENTS.HALLOWED_NIGHTS) then
		-- pick out up to 3 types of candies to throw out
		local candytypes = { math.random(NUM_HALLOWEENCANDY), math.random(NUM_HALLOWEENCANDY), math.random(NUM_HALLOWEENCANDY) }

		local numcandies = item.components.tradable.halloweencandyvalue or 1
		numcandies = numcandies + math.random(2)

		-- only people in costumes get a good amount of candy!		
		if giver ~= nil and giver:IsValid() and giver.components.skinner ~= nil then
			local costume = giver.components.skinner:GetClothing().base
			if costume ~= nil and costume ~= "" and Prefabs[costume] ~= nil and table.contains(Prefabs[costume].tags, "COSTUME") then
				numcandies = numcandies + math.random(4) + 1
			end
		end
		
		for k = 1, numcandies do
			local candy = SpawnPrefab("halloweencandy_"..GetRandomItem(candytypes))
			local pt = Vector3(inst.Transform:GetWorldPosition()) + Vector3(0, 4.5, 0)

			candy.Transform:SetPosition(pt:Get())
			local down = TheCamera:GetDownVec()
			local angle = math.atan2(down.z, down.x) + (math.random() * 60 - 30) * DEGREES
			local sp = math.random() * 4 + 2
			candy.Physics:SetVel(sp * math.cos(angle), math.random() * 2 + 8, sp * math.sin(angle))
		end
	end

 

Halloween Loading Screens

  Reveal hidden contents

bg_image1_resize.png

bg_image2_resize.png

bg_image3_resize.png

 

This stuff is forever ? or just for this Halloween?

  • Like 1
Link to comment
Share on other sites

On 10/21/2016 at 2:16 AM, Sinister_Fang said:

Poor Wigfrid. She can't enjoy all these new sweets that Charlie and the Pig King have given us. She must have some really strong willpower if she can remain in character in the presence of all these sugary delights.

 

Pssst. Maybe add some chocolate covered ants or something? Insects could be considered meat right? Actually, I don't really want to think about that...

Actually, Wigfrid can eat most candies.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
  • Create New...