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
Seqüência aleatória!
2 participantes
Página 1 de 1
Seqüência aleatória!
Digamos assim, tenho um obj_controle, que controla uma sequencia aleatória de soma! ou seja:
Sequencia 1 cria 3 sprites:
Sequencia 2 cria 4 sprites:
Sequencia 3 cria 5 sprites:
Ai assim, na sequencia 1 ele cria, e espera eu clicar em cima dos , e se eu clicar na sequencia que ele pediu, parte para a próxima sequencia que será os 3 primeiros e mais um! Se acaso eu errar os sprites ele repete e sequencia 1 até eu acertar! Ai assim, quando acabar as chances de acertar, volta para o menu(room_goto) ou (game_restart) e que a sequencia que vier depois, não seja a mesma do que a anterior ou seja: entendem? TIPOW QUE CRIE UMA SEQUENCIA ALEATÓRIA E REPITA, E SE NÃO COPIAR A MESMA SEQUENCIA QUANDO DER RESTART JA TA "BÃO"! =D depois eu posso me virar com as paradas de acertar =D +REP
Sequencia 1 cria 3 sprites:
Sequencia 2 cria 4 sprites:
Sequencia 3 cria 5 sprites:
Ai assim, na sequencia 1 ele cria, e espera eu clicar em cima dos , e se eu clicar na sequencia que ele pediu, parte para a próxima sequencia que será os 3 primeiros e mais um! Se acaso eu errar os sprites ele repete e sequencia 1 até eu acertar! Ai assim, quando acabar as chances de acertar, volta para o menu(room_goto) ou (game_restart) e que a sequencia que vier depois, não seja a mesma do que a anterior ou seja: entendem? TIPOW QUE CRIE UMA SEQUENCIA ALEATÓRIA E REPITA, E SE NÃO COPIAR A MESMA SEQUENCIA QUANDO DER RESTART JA TA "BÃO"! =D depois eu posso me virar com as paradas de acertar =D +REP
Re: Seqüência aleatória!
Eu usaria listas pra controlar esses eventos.
Vc vai precisar basicamente de listas, alarmes e eventos de clique no mouse.
Vc pode fazer uma lista de sprites (ou mesmo objetos).
Antes de começar a mostrar os sprites, vc pode embaralha-los... com o ds_list_suffle();
Pra vc adicionar mais um sprite na sua sequencia vc vai usar o ds_list_add();
E assim sucessivamente.
Abaixo botei todos os códigos pra vc usar as listas (ds_list):
ds_list_create() Creates a new list. The function returns an integer as an id that must be used in all other functions to access the particular list.
ds_list_destroy(id) Destroys the list with the given id, freeing the memory used. Don't forget to call this function when you are ready with the structure.
ds_list_clear(id) Clears the list with the given id, removing all data from it but not destroying it.
ds_list_copy(id,source) Copies the list source into the list with the given id.
ds_list_size(id) Returns the number of values stored in the list.
ds_list_empty(id) Returns whether the list is empty. This is the same as testing whether the size is 0.
ds_list_add(id,val) Adds the value at the end of the list.
ds_list_insert(id,pos,val) Inserts the value at position pos in the list. The first position is 0, the last position is the size of the list minus 1.
ds_list_replace(id,pos,val) Replaces the value at position pos in the list with the new value.
ds_list_delete(id,pos) Deletes the value at position pos in the list. (Position 0 is the first element.)
ds_list_find_index(id,val) Find the position storing the indicated value. If the value is not in the list -1 is returned.
ds_list_find_value(id,pos) Returns the value stored at the indicated position in the list.
ds_list_sort(id,ascend) Sorts the values in the list. When ascend is true the values are sorted in ascending order, otherwise in descending order.
ds_list_shuffle(id) Shuffles the values in the list such that they end up in a random order.
ds_list_write(id) Turns the data structure into a string and returns this string. The string can then be used to e.g. save it to a file. This provides an easy mechanism for saving data structures.
ds_list_read(id,str) Reads the data structure from the given string (as created by the previous call).
Vc vai precisar basicamente de listas, alarmes e eventos de clique no mouse.
Vc pode fazer uma lista de sprites (ou mesmo objetos).
Antes de começar a mostrar os sprites, vc pode embaralha-los... com o ds_list_suffle();
Pra vc adicionar mais um sprite na sua sequencia vc vai usar o ds_list_add();
E assim sucessivamente.
Abaixo botei todos os códigos pra vc usar as listas (ds_list):
ds_list_create() Creates a new list. The function returns an integer as an id that must be used in all other functions to access the particular list.
ds_list_destroy(id) Destroys the list with the given id, freeing the memory used. Don't forget to call this function when you are ready with the structure.
ds_list_clear(id) Clears the list with the given id, removing all data from it but not destroying it.
ds_list_copy(id,source) Copies the list source into the list with the given id.
ds_list_size(id) Returns the number of values stored in the list.
ds_list_empty(id) Returns whether the list is empty. This is the same as testing whether the size is 0.
ds_list_add(id,val) Adds the value at the end of the list.
ds_list_insert(id,pos,val) Inserts the value at position pos in the list. The first position is 0, the last position is the size of the list minus 1.
ds_list_replace(id,pos,val) Replaces the value at position pos in the list with the new value.
ds_list_delete(id,pos) Deletes the value at position pos in the list. (Position 0 is the first element.)
ds_list_find_index(id,val) Find the position storing the indicated value. If the value is not in the list -1 is returned.
ds_list_find_value(id,pos) Returns the value stored at the indicated position in the list.
ds_list_sort(id,ascend) Sorts the values in the list. When ascend is true the values are sorted in ascending order, otherwise in descending order.
ds_list_shuffle(id) Shuffles the values in the list such that they end up in a random order.
ds_list_write(id) Turns the data structure into a string and returns this string. The string can then be used to e.g. save it to a file. This provides an easy mechanism for saving data structures.
ds_list_read(id,str) Reads the data structure from the given string (as created by the previous call).
fredcobain- Games Ranking :
Data de inscrição : 14/04/2011
Reputação : 163
Número de Mensagens : 692
Prêmios :
x 0 x 3 x 0
x 0 x 0 x 0
x 0 x 0 x 0
Re: Seqüência aleatória!
E ME TIRARAM REPUTAÇÃO DESSA AKI TBM! AFFF QUEM É O CRIANÇA BRINCANDO COM MINHA REPUTAÇÃO? Vlws Fred eu vou tentar isso o que vc falou! Quem tirou minha rep aki tbm eu quero saber!
Re: Seqüência aleatória!
Soul, mande uma MP para os moderadores. Ou vc deu aluma mancada, ou houve um erro mesmo....
fredcobain- Games Ranking :
Data de inscrição : 14/04/2011
Reputação : 163
Número de Mensagens : 692
Prêmios :
x 0 x 3 x 0
x 0 x 0 x 0
x 0 x 0 x 0
Tópicos semelhantes
» Room aleatoria
» [Help] :confused: barra aleatoria
» Room inicial ser aleatória.
» Como fazer ir para uma room aleatoria?
» [RESOLVIDO]Movimentação aleatoria
» [Help] :confused: barra aleatoria
» Room inicial ser aleatória.
» Como fazer ir para uma room aleatoria?
» [RESOLVIDO]Movimentação aleatoria
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos