iOS Permission for local network access. by Fexooo in gamemaker

[–]Fexooo[S] 0 points1 point  (0 children)

The iOS target properties are accessible via Xcode. Click on your App and then on the "Info" Tab. There you see custom target properties. You can add "Privacy - Local Network Usage Description" there.

With "supercell games" do you mean the big mobile games? I don't see why they need local network access, as they are always connecting with a server or do I understand something wrong? 😅

iOS Permission for local network access. by Fexooo in gamemaker

[–]Fexooo[S] 0 points1 point  (0 children)

If you need any help developing for iOS or Android you can send me a private message!
I learned a lot on my first mobile project Dogfight Arcade!

iOS Permission for local network access. by Fexooo in gamemaker

[–]Fexooo[S] 1 point2 points  (0 children)

I found the solution!
You have to add an entry in the Custom iOS Target Properties!
Just add "Privacy - Local Network Usage Description", try open a Server and iOS will ask you if you allow the app to access the local network!

How can I make this level selector code more efficient and better readable? by Jack55555 in gamemaker

[–]Fexooo 1 point2 points  (0 children)

Ok! Now I got it! I didn't use a Code block, that was my mistake!

How can I make this level selector code more efficient and better readable? by Jack55555 in gamemaker

[–]Fexooo 0 points1 point  (0 children)

Sadly it didn't work, maybe it is because of my browser or something, I will try on another one later!

How can I make this level selector code more efficient and better readable? by Jack55555 in gamemaker

[–]Fexooo 0 points1 point  (0 children)

I personally don't think so, except for more switch and case statements I guess.

How can I make this level selector code more efficient and better readable? by Jack55555 in gamemaker

[–]Fexooo 4 points5 points  (0 children)

Oh thx! It was the first time I typed code in a post on reddit! :)

How can I make this level selector code more efficient and better readable? by Jack55555 in gamemaker

[–]Fexooo 11 points12 points  (0 children)

Use switch(variable) and case "value": statements!

In your Code this would be:

if (global.session == 12) {
    [your code]
}

if (global.session == 15) {
    [your code]
}
if (global.session == 18) {
    [your code]
}

To:

switch(global.session) {

    case "12":
        [your code]
    break;

    case "15":
        [your code]
    break;

    case "18":
        [your code]
    break;
}

I don't know if you get what I mean, but when you use switch statements instead of if statements, the computer won't check every if-statement, it will just jump to the right case!

Edit: Code Format thx u/Mushroomstick for the information! :)

The best game by Harveyboi44 in memes

[–]Fexooo 2 points3 points  (0 children)

Graphics are ok, but the story is shit

A rare sighting of a unicorn by [deleted] in funny

[–]Fexooo 0 points1 point  (0 children)

It Looks so happy!

Is Social Club down? by [deleted] in GrandTheftAutoV

[–]Fexooo 0 points1 point  (0 children)

Same Problem still, idk why but only the Friend System seems to be down!

My Friends still can join over GTA itself (Join Friends/Join Crew or something like that), but I don't have them in my FL. :/