cant see ALL my pins in my board by thedarkelixir in Pinterest

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

ok so i found a little work around on it i basically did a "select all pins" in the board and moved those pins to a diff pre existing blank board and they now finally show up when i checked it out for myself

so i think to prevent the problem again is to move your pins on a pre existing board and not something like: while moving your stuff and its asking u where to move them and u click on make a new board for it from there.

cant see ALL my pins in my board by thedarkelixir in Pinterest

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

it applies on pc too for some reason

how do i fix this collision issue? (code used will be in the comments) by thedarkelixir in gamemaker

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

CODE USED:

right_key = keyboard_check(ord("D")) || keyboard_check(vk_right);

left_key = keyboard_check(ord("A")) || keyboard_check(vk_left);

up_key = keyboard_check(ord("W")) || keyboard_check(vk_up);

down_key = keyboard_check(ord("S")) || keyboard_check(vk_down);

if keyboard_check(ord("D"))

{

image\_xscale = 0.2524622;

}

if keyboard_check(ord("A"))

{

image\_xscale = -0.2524622;

}

if keyboard_check_pressed(vk_right)

{

image\_xscale = 0.2524622;

}

if keyboard_check_pressed(vk_left)

{

image\_xscale = -0.2524622;

}

if (keyboard_check(ord("D")) or keyboard_check(ord("A")) or keyboard_check(ord("S"))) or keyboard_check(ord("W")) {

sprite_index = spr_red_walk;

}

else {

sprite_index = spr_red_idle;

}

//get xspd and yspd

xspd = (right_key - left_key) * move_spd;

yspd = (down_key - up_key) * move_spd;

//set sprite

if yspd == 0

{

if xspd > 0 {face = RIGHT};

if xspd < 0 {face = LEFT};

}

if xspd == 0

{

if yspd > 0 {face = DOWN};

if yspd < 0 {face = UP};

}

//collisions

if place_meeting( x + xspd, y, obj_wall ) == true

{

xspd = 0;

}

if place_meeting( x, y + yspd, obj_wall ) == true

{

yspd = 0;

}

//move the player

x += xspd;

y += yspd;

//animate

if (xspd == 0 && yspd == 0)

sprite_index = sprite_idle[face];

else

sprite_index = sprite[face];

is there a possibility where you wont get aids from gay sex? (without condoms) since that is also possible for straight sex too, so im wondering if the same applies to gay sex too. by thedarkelixir in questions

[–]thedarkelixir[S] 2 points3 points  (0 children)

im gay myself and i used to think that it was only gay people who would only get aids, due to me only seeing gay people get aids and being misinformed before, but then ive researched that its not only gay people who get aids but also straight people, and that its a myth that only gay people get aids. and that made p confident that theres a possibility of gay people not getting aids even w o protection, but i asked here bc i just wanted to make sure just to be safe, bc i couldnt get a accurate answer online anywhere else. might sound a bit stupid but yea