can somebody good at coding help me
i'm trying to do where when you you reach then end of a room you go to the next room but I don't know what code to put and also does anybody know what you need to do to manipulate the camera because I'm trying to make a hallway and do where you can just run down the hallway.
you could try to make that into an animation
you could make the hallway an animation then make it end at a specific time or have a image of different scene that plays through until it stops until you want it to change
check the animation out I needa know lol
Just so you know asking other people to help code your games is kinda selfish... well not entirely, I was like that where I asked people to help me code but then I realized that it made people not want to interact with me, so please try to learn microScript or any coding by yourself and learn from yourself because it really will help you make what you want easier, like me! :)
uhh asking for help isn't selfish that's why there's the option to put the help tag thingy no one knows everything so its not bad to ask for help.
Hey AJiscool Can you help me code a menu screen
I didn't say it was fully but always finding someone to help you just for their game is kinda selfish.
Like I was, I was like that and I am just saying from my perspective, I can help, but not all the time then I am just making the full game for whoever.
yea i can help you make a menu screen invite me to the project and tell me what you need on the menu screen and stuff
your already invited its the FNAF game
i'm sorry Tiberius I will start to learn code and do the best I can
Yeah not trying to be mean but it is the best way to help yourself, plus when you know how to code it is more fun to make games!
maybe next time dont use the word selfish, we all need to learn through help from others saying that might make someone feel bad asking for help :)
make separate maps for each room, then draw the room the player is in.
that would probably look a little something like this:
player = object
x = 0
y = 0
end
current_room = 1
update = function()
// add your own collision detector here to check if the player is in a door. If they are in a door then set the 'current_room' variable to the next room.
if IsInDoor(current_room, player.x, player.y) then
current_room += 1
end
end
draw = function()
screen.clear()
screen.drawMap("" + current_room + "", 0, 0, screen.height, screen.height)
*draw the player down here so it appears on top of the map*
end
no offense, but, if you cant come up with code for simple things like that, you should probably stick to making more basic things, then work your way up to coding at that level. that's just how everyone learns.
good luck to you, my friend.