Grand Prix AI League Topic

Read the rules in this link

OH i win11 games 0 loses iam 7100 right now

1 Like

Where are you from? It looks like germany right?


W
Also i can win blasterdrag


bruh my rank is 37 right now :frowning: but i can still beat no 4 :smiley:

1 Like

have you tried for no 4 mre weeks i think you can beat him also

1 Like

uh i am from turkey ii dnot think its like german

2 Likes

i can win no 2 but with another code(my old code) But my code im using rn cant beat him but can win another opponent


As you can see i have this score

but i have ranked it so im in top 60 :c

I am not doing so well, I still haven’t gotten my code back :sob:

I am trying to replicate it but I haven’t done much, we only have four days left! :scream:

do the final sims count your code that currently is running in the editor at the end or your submitted code

edit: does anybody know what’s going on, it keeps causing this error:


on this line
Screenshot 2025-07-27 201145

here is my full code:

function avoidWaterball(direction) {
    const dodge = {
        right: ["left","up","down"],
        left:  ["right","up","down"],
        up:    ["left","right","down"],
        down:  ["left","right","up"]
    };
    const off = {
        left:  [-2,0],  right: [2,0],
        up:    [0,2],   down:  [0,-2]
    };
    for (const d of dodge[direction]) {
        const [dx, dy] = off[d];
        if (!hero.waterAtXY(hero.x+dx, hero.y+dy)) {
            hero.turn(d);
            return;
        }
    }
    hero.jump();
}

I clicked ask the AI and it gave me this same code back, and it still gave the error

No idea honestly. Will take a look

Probably no. The idea is giving a summer break before we are trying a little different format of arenas with the next season (no split to warm up and challenge)

2 Likes

Willwa insted of left -2,0 left 4-0( iam using something like thay)

1 Like

Alex probably me and you on the top 3 on 11-14 category (but i have a problem i have 2 accaonts at ledder one of them ia frko5000 the other one is furkanciltrs6240 but i cant login that account)
Probably at the 11-14 category will be like that

1.tepun123
2.alex
3.my stem account or my real account

1 Like


Ahh moment :smiley:

1 Like

That might make itmore accurate, but I am trying to fix the error

1 Like

do you mean this

left:  [4, -0]
1 Like