Jump to content


enkido

Member Since 16 Apr 2012
Offline Last Active Jul 23 2012 02:17 PM

Posts I've Made

In Topic: Connect Gamemaker and Android App via 39dll

18 July 2012 - 07:46 PM

am having the same problem, no idea how to send information to an app :(

In Topic: Problem with 2 FOR and 1 While

17 April 2012 - 01:56 PM

global.lvl is the number of "good" bubbles, for example at level 1 global.lvl = 3, so it should found 3 "goods" bubbles in the grid, the rest of the cell is full with "bads" bubbles, so the player have to press only the good ones.
Now, this is working, but only for the j (rows) no idea why is not working for the column.
while(b < global.lvl){
    for(i=0;i<global.lvl;i+=1)
    {
        if(b<global.lvl){
        for(j=0;j<global.lvl;j+=1)
        if(b<global.nivel){
        {   
            A[i,j]=choose(0,1);
            if(A[i,j]=1)
            {
                b +=1}
                
               
            }}}}}