#The Challenge work only on the.... Challenge page !!! WHY ???
12 messages · Page 1 of 1 (latest)
The Challenge work only on the.... Challenge page !!! WHY ???
What...?
The scoring system... is working... ONLY... on the dedicated page of the Challenge !!!
The main page of the games doesnt work anymore (Because of it), if we are on an other challenge page, the other challenges are not working, etc...
I dont understand this behavior
And, obviously, when I say "it doesnt work anymore", I want to say "it crashes".
Yes, the Challenge system is related to GX
Good year 😁.
Any idea why GX has think kind of weird limitation about challengeS?
Some weeks after, still the same issue.
I met someone online saying it was possible :
But they disapeared withount any answer 😢
Hi everyone,
When I try my game offline in the editor, the game crash because it's not able to find the param from the GXC Challenge, obviously because I'm not online, it's normal I guess.
But how can I fix this issue when I'm working on it ?
NB : My challenge is working fine when I'm online...
This code is able to allow multiple challenges at the same time, and make a distinction between the Windows version & the GX version of the game :
if (os_browser == !browser_not_a_browser)
{
if global.gamemode == 1
{
// Challenge Mission 01
challenge_id = "edf6b0b3-099e-4e74-a7d1-4cb4899d2f85";
show_debug_message("Challenge Campaign selected");
gxc_challenge_submit_score(global.team_score_general,undefined, {challengeId: "edf6b0b3-099e-4e74-a7d1-4cb4899d2f85"});
}
else if global.gamemode == 2
{
challenge_id = "a6dd5130-a1e2-4e16-9c4a-2d5031d4388f";
show_debug_message("Challenge Infinite selected");
gxc_challenge_submit_score(global.team_score_general,undefined, {challengeId: "a6dd5130-a1e2-4e16-9c4a-2d5031d4388f"});
}
}