The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.39 / 5.00 38,635 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.09 / 5.00 15,161 Viewswhen i pick the girl option on my game i am a girl then when i go in to a building like a shop where the character screen is not shown then exit i am a boy this is the code
on (release) {
gotoAndStop(3);
_root.character.gotoAndStop(2);
}
Oh shit! I came across the same problem a while ago
You have to change it to
onClipEvent (enterFrame) {
If (_root.player.sex == female) {
_root.penis = false;
}
}
also remember to change the building variable from 'sexchangeshop' to 'baptstChurch(1)'
Just store what sex your character has in a boolean and do whatever gotoStoping you might want according to the boolean.
// Codes for setting sex.
var penis:Boolean = false; //woman
var penis:Boolean = true; //man
// Codes for checking sex.
if (penis) {
trace("OMG you have a penis (so you are a dude)");
// Do whatever dude stuff you want here.
} else {
trace("OMG you don't have a penis (so you are a girl)");
// Do whatever girl stuff you want here.
} Don't forget to put your pants on.