Search found 29 matches

by Seth144k
Mon Feb 28, 2022 7:03 pm
Forum: Support and Development
Topic: Help with collisions
Replies: 4
Views: 2159

Re: Help with collisions

thank you so much I had so much trouble with this thank you
by Seth144k
Mon Feb 28, 2022 6:08 pm
Forum: Support and Development
Topic: Help with collisions
Replies: 4
Views: 2159

Help with collisions

So I started work on sort of a space shooter thing and for some reason collision wont work and it says that the bullet table doesnt exist which is weird. please help here is my .love file
by Seth144k
Wed Feb 09, 2022 9:10 pm
Forum: Support and Development
Topic: Error when running my game
Replies: 7
Views: 4065

Re: Error when running my game

how do you pack it correctly then?
by Seth144k
Wed Feb 09, 2022 7:34 pm
Forum: Support and Development
Topic: Error when running my game
Replies: 7
Views: 4065

Re: Error when running my game

oh im sorry i thought i posted wrong... please dont take down my post for spam as i sincerely got confused
by Seth144k
Wed Feb 09, 2022 7:33 pm
Forum: Support and Development
Topic: Error when running my game
Replies: 7
Views: 4065

Re: Error when running my game

So whenever I run my love game it says that it was comparing a value with nil (its on cookie.lua line 26) im not really understanding why..?
i even tried changing the value to 1 or something higher and its still giving the same error so im not really sure what to do. anyone who sees this please help!
by Seth144k
Wed Feb 09, 2022 7:32 pm
Forum: Support and Development
Topic: Error when running my game
Replies: 7
Views: 4065

Re: Error when running my game

So whenever I run my love game it says that it was comparing a value with nil (its on cookie.lua line 26) im not really understanding why..?
i even tried changing the value to 1 or something higher and its still giving the same error so im not really sure what to do. anyone who sees this please help!
by Seth144k
Wed Feb 09, 2022 7:30 pm
Forum: Support and Development
Topic: Error when running my game
Replies: 7
Views: 4065

Error when running my game

Whenever i run my game it says that its comparing a value with nil which doesnt make any sense. i even changed the value to 1 to see if that worked and it didnt! i have provided the .love for you all to see the source code
by Seth144k
Mon Jan 31, 2022 3:36 am
Forum: Support and Development
Topic: How to install the SUIT gui library for lua and love2d?
Replies: 1
Views: 1082

How to install the SUIT gui library for lua and love2d?

I cant find anywhere how to install this library... I have my setup like this: in main.lua suit = require 'suit' state = "Menu" if state == "Menu" then local button_play = {} button_play.x = 50 button_play.y = 50 button_play.w = 40 button_play.h = 60 y = love.mouse.getY() x = lov...
by Seth144k
Wed Jan 19, 2022 8:50 pm
Forum: Support and Development
Topic: How can I delete the miliseconds of a timer and only show the first number?
Replies: 2
Views: 1916

How can I delete the miliseconds of a timer and only show the first number?

I figured out how to get working the timer using this:

Code: Select all

timer = "0"
timer = timer + dt
    if timer >= 10 then
        love.event.quit()
    end
this makes a timer but it shows milliseconds also so how can i hide or not show them?