Entrar
Últimos assuntos
» player não consegue andarpor lovn7 Qui 21 Nov 2024, 13:33
» É possível fazer istó no game maker
por William Lima Qui 21 Nov 2024, 10:56
» Rio Rise - novo launcher do Gta San Andreas SAMP Brasil
por Lua Sáb 16 Nov 2024, 20:22
» (Resolvido) Cenario longo x Texture Pages
por josuedemoraes Sáb 16 Nov 2024, 15:31
» Kids' band
por Adilson Lucindo Santos Sex 15 Nov 2024, 12:23
» (RESOLVIDO) Engasgos-Troca de Sprites/animações
por josuedemoraes Ter 12 Nov 2024, 01:49
» Block Room - DEMO
por Joton Qua 06 Nov 2024, 22:58
» Game Infinito vertical (subindo)
por macmilam Sáb 26 Out 2024, 12:36
» Retorno da GMBR!!!
por Dancity Ter 22 Out 2024, 16:36
» Máquina de estados
por aminaro Qui 10 Out 2024, 13:33
» como faço pra um objeto colidir com o outro e diminuir a vida do player ?
por josuedemoraes Qui 03 Out 2024, 16:51
» RESOLVIDO: Colisão com objetos moveis
por josuedemoraes Qua 02 Out 2024, 20:28
» Crypt of the Blood Moon
por divin sphere Qua 11 Set 2024, 18:18
» como fazer um objeto seguir?
por divin sphere Dom 18 Ago 2024, 18:08
» Procuro de alguém para Modelar/Texturizar/Animar objetos 3D
por un00brn Dom 11 Ago 2024, 11:10
» Destruição de cenário (estilo DD Tank)
por CoronelZeg Sex 09 Ago 2024, 17:16
» RESOLVIDO-Como destruir uma instancia especifica de um objeto
por josuedemoraes Ter 23 Jul 2024, 00:40
» Automatizar a coleta de id
por GabrielXavier Seg 22 Jul 2024, 18:01
» Preciso de ajuda para concluir um pequeno projeto
por lmoura Qui 27 Jun 2024, 15:45
» ANGULO ACOMPANHAR O OBJETO
por Klinton Rodrigues Qui 27 Jun 2024, 08:34
» Musica reinicia quando sala reinicia
por GabrielXavier Ter 18 Jun 2024, 07:28
» como fazer uma copia de gd
por generico_cube Sex 14 Jun 2024, 15:48
» Square Adventure
por guilherme551 Ter 11 Jun 2024, 09:54
» como posso definir limite de uma variavel
por GabrielXavier Sex 07 Jun 2024, 14:14
» [Resolvido] Dúvida, colisão única de objeto
por vdm842 Sex 24 maio 2024, 09:50
Engine de Aceleração
3 participantes
GMBR :: Ensine & Aprenda :: Exemplos :: Game Maker (engines)
Página 1 de 1
Engine de Aceleração
Esta engine é para quem quer criar jogos de carro com sistema de macha.
em create:
em create:
- Código:
parado=true
acelera=false
macha_1=false
macha_2=false
macha_3_false
- Código:
if keyboard_check(vk_left)
{
if macha_1=true{hspeed=-3}
if macha_2=true{hspeed=-6}
if macha_3=true{hspeed=-9}
}
if keyboard_check(vk_right)
{
if macha_1=true{hspeed=+3}
if macha_2=true{hspeed=+6}
if macha_3=true{hspeed=+9}
}
if keyboard_check(vk_numpad1)
{macha_1=true macha_2=false macha_3=false}
if keyboard_check(vk_numpad2)
{macha_1=false macha_2=true macha_3=false}
if keyboard_check(vk_numpad3)
{macha_1=false macha_2=false macha_3=true}
if keyboard_check_released(vk_left){macha_1=true macha_2=false macha_3=false}
if keyboard_check_released(vk_right){macha_1=true macha_2=false macha_3=false}
Última edição por Kronos em Qui 11 Fev 2010, 21:36, editado 1 vez(es)
Kronos- Data de inscrição : 10/02/2010
Reputação : 0
Número de Mensagens : 112
Prêmios :
x 0 x 0 x 0
x 0 x 0 x 0
x 0 x 0 x 0
Re: Engine de Aceleração
Dá dando que na linha 25 do step o símbolo } é expected....
Cm resolve??
if keyboard_check(vk_numpad1) and acelera=true
{macha_1=true}
if keyboard_check(vk_numpad2) and acelera=true
{macha_2=true}
if keyboard_check(vk_numpad3) and acelera=true
{macha_3=true}
Cm resolve??
if keyboard_check(vk_numpad1) and acelera=true
{macha_1=true}
if keyboard_check(vk_numpad2) and acelera=true
{macha_2=true}
if keyboard_check(vk_numpad3) and acelera=true
{macha_3=true}
Sr. Sinistro- Data de inscrição : 23/06/2009
Reputação : 8
Número de Mensagens : 542
Prêmios :
x 0 x 0 x 0
x 0 x 0 x 0
x 0 x 0 x 0
Re: Engine de Aceleração
Verifiquei o código e há alguns erros.
Os códigos certos(também reorganizei o código):
Create
parado=true
acelera=false
macha_1=false
macha_2=false
macha_3=false
Step
if keyboard_check(vk_left) {
parado=false
acelera=true
if macha_1=true{hspeed=-3;}
if macha_2=true{hspeed=-6;}
if macha_3=true{hspeed=-9;}
}
if keyboard_check(vk_right) {
parado=false
acelera=true;
if macha_1=true{hspeed=3;}
if macha_2=true{hspeed=6;}
if macha_3=true{hspeed=9;}
}
if keyboard_check_released(vk_left)
{parado=true
acelera=false
macha_1=false
macha_2=false
macha_3=false
}
if keyboard_check_released(vk_right) {
parado=true
acelera=false
macha_1=false
macha_2=false
macha_3=false}
if keyboard_check(vk_numpad1)
{macha_1=true}
if keyboard_check(vk_numpad2)
{macha_2=true}
if keyboard_check(vk_numpad3)
{macha_3=true}
E não é macha, e sim marcha.
Apesar dos erros, com alguns ajustes ele funciona bem
Os códigos certos(também reorganizei o código):
Create
parado=true
acelera=false
macha_1=false
macha_2=false
macha_3=false
Step
if keyboard_check(vk_left) {
parado=false
acelera=true
if macha_1=true{hspeed=-3;}
if macha_2=true{hspeed=-6;}
if macha_3=true{hspeed=-9;}
}
if keyboard_check(vk_right) {
parado=false
acelera=true;
if macha_1=true{hspeed=3;}
if macha_2=true{hspeed=6;}
if macha_3=true{hspeed=9;}
}
if keyboard_check_released(vk_left)
{parado=true
acelera=false
macha_1=false
macha_2=false
macha_3=false
}
if keyboard_check_released(vk_right) {
parado=true
acelera=false
macha_1=false
macha_2=false
macha_3=false}
if keyboard_check(vk_numpad1)
{macha_1=true}
if keyboard_check(vk_numpad2)
{macha_2=true}
if keyboard_check(vk_numpad3)
{macha_3=true}
E não é macha, e sim marcha.
Apesar dos erros, com alguns ajustes ele funciona bem
Re: Engine de Aceleração
Eu corrigi e coloquei a correção la em cima no lugar do Step anterior
Kronos- Data de inscrição : 10/02/2010
Reputação : 0
Número de Mensagens : 112
Prêmios :
x 0 x 0 x 0
x 0 x 0 x 0
x 0 x 0 x 0
Tópicos semelhantes
» Engine de Plataforma com aceleração e água
» Engine de aceleração e fricção "sem usar hspeed e friction" !
» Aceleração
» Aceleração, desaceleração e frenagem.
» [Tutorial] Velocidade e Aceleração
» Engine de aceleração e fricção "sem usar hspeed e friction" !
» Aceleração
» Aceleração, desaceleração e frenagem.
» [Tutorial] Velocidade e Aceleração
GMBR :: Ensine & Aprenda :: Exemplos :: Game Maker (engines)
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos