[HAT] Be the Shoe or wear it ;)

Mods, guides how to use and install mods go right in here.
Post Reply
User avatar
TheBloodyScreen
Posts: 28
Joined: 03 Feb 2012, 20:20
Contact:

Post » 17 Mar 2012, 07:36

Hey Guys,

here is my first own Hat. If u r little Mario you ARE the Shoe (SMB 3) and if u r big Mario you wear it on your Head.

here the Screenshots and the code for the configs:

Image
Image

hatconfig.lua
Image

table.insert(hat, {x = 4, y = 1, height = 8, graphic = love.graphics.newImage("graphics/SMB/hats/shoe_small.png")})

bighatconfig.lua
Image

table.insert(bighat, {x = -3, y = -10, height = 8, graphic = love.graphics.newImage("graphics/SMB/bighats/shoe_big.png")})


DOWNLOAD:
little: http://jaydee.gamerhalle.com/Public/shoe_small.png
big: http://jaydee.gamerhalle.com/Public/shoe_big.png
Last edited by TheBloodyScreen on 17 Mar 2012, 08:22, edited 1 time in total.

User avatar
Zlmpery
Posts: 339
Joined: 05 Feb 2012, 19:12
Contact:

Post » 17 Mar 2012, 07:45

Cool hat.
BTW, the small hat should be table.insert(hat, {x = 4, y = 1, height = 8, graphic = love.graphics.newImage("graphics/SMB/hats/shoe_small.png")})

This way the hat can be any number they want it to be. It is also smaller in size. Also, the hat should no be number 29. The game already has 33 hats!

User avatar
TheBloodyScreen
Posts: 28
Joined: 03 Feb 2012, 20:20
Contact:

Post » 17 Mar 2012, 07:50

yeah i know but i had some issues if i wrote it like this and its number 29 cause 28 is the last hat that is wrote in this style and i just keep the counter ^^

(sorry my english is fuckin' bad cause i haven't slept 48h)

User avatar
TheBloodyScreen
Posts: 28
Joined: 03 Feb 2012, 20:20
Contact:

Post » 17 Mar 2012, 07:57

thats the result if i use the hat with table.insert(hat, {x = 4, y = 1, height = 8, graphic = love.graphics.newImage("graphics/SMB/hats/shoe_small.png")})

Image

User avatar
renhoek
Posts: 4545
Joined: 11 Feb 2012, 10:04

Post » 17 Mar 2012, 07:59

I missread the title as "be shoe to wear it." XD

User avatar
Zlmpery
Posts: 339
Joined: 05 Feb 2012, 19:12
Contact:

Post » 17 Mar 2012, 08:05

TheBloodyScreen wrote:thats the result if i use the hat with table.insert(hat, {x = 4, y = 1, height = 8, graphic = love.graphics.newImage("graphics/SMB/hats/shoe_small.png")})

Image
That is stange. That issue usually only comes when options.txt is different. Try deleting it from appdata/love/mari0 and rerun.

User avatar
TheBloodyScreen
Posts: 28
Joined: 03 Feb 2012, 20:20
Contact:

Post » 17 Mar 2012, 08:09

nope the issue also happens with a 100% fresh options.txt (except the hat option ;) )

User avatar
TheBloodyScreen
Posts: 28
Joined: 03 Feb 2012, 20:20
Contact:

Post » 17 Mar 2012, 08:13

oh i forgott to say that the issue happens if little mario eats an Mushroom "shame on me"

User avatar
TheBloodyScreen
Posts: 28
Joined: 03 Feb 2012, 20:20
Contact:

Post » 17 Mar 2012, 08:21

i fixed it!!! i dont know how but i did :D

User avatar
Zlmpery
Posts: 339
Joined: 05 Feb 2012, 19:12
Contact:

Post » 17 Mar 2012, 08:37

TheBloodyScreen wrote:i fixed it!!! i dont know how but i did :D
Oh good. To bad the shoe isn't animated. Wouldn't it be awesome if Maurice added in the ability to make animated hats? *Wink Wink*

Anyways, have you seen my hat gallery?

User avatar
TheBloodyScreen
Posts: 28
Joined: 03 Feb 2012, 20:20
Contact:

Post » 17 Mar 2012, 08:43

i have installed your gallery ;)

User avatar
TheBloodyScreen
Posts: 28
Joined: 03 Feb 2012, 20:20
Contact:

Post » 17 Mar 2012, 08:44

and yes animated hats would be fuckin' awesome ^^

User avatar
TheBloodyScreen
Posts: 28
Joined: 03 Feb 2012, 20:20
Contact:

Post » 17 Mar 2012, 09:17

I'm workin on an Update to be Mario in a Shoe and not just the Shoe itself ^^
Don't worri the "Shoe only" Edition stays online ;)

User avatar
TheBloodyScreen
Posts: 28
Joined: 03 Feb 2012, 20:20
Contact:

Post » 17 Mar 2012, 09:48

UPDATE

Be THE Shoe


Image Image

Download:
small big

Conifg lines:
hatconfigs.lua:

Code: Select all

table.insert(hat, {x = 3, y = 1, height = 8, graphic = love.graphics.newImage("graphics/SMB/hats/shoe_small.png")})
bighatconfigs.lua:

Code: Select all

table.insert(bighat, {x = -3, y = -10, height = 8, graphic = love.graphics.newImage("graphics/SMB/bighats/shoe_big.png")})


Be IN the Shoe

Image Image
i tried to add some Blood. I don't know why but i did ^^ if you don't want the Blood just use the .png from above
Download:
small big

Conifg lines:
hatconfigs.lua:

Code: Select all

table.insert(hat, {x = 3, y = -10, height = 8, graphic = love.graphics.newImage("graphics/SMB/hats/marioinashoe_small.png")})
bighatconfigs.lua:

Code: Select all

table.insert(bighat, {x = -3, y = -10, height = 8, graphic = love.graphics.newImage("graphics/SMB/bighats/marioinashoe_big.png")})

Post Reply