Jump to content
MakeWebGames

If you are a certain gender you can do different things than another?


Recommended Posts

Posted

Well, in my game, you can be a human (another name for male) or an alien (another name for female).

I want it so if you are a human (male), you can only participate in some quests, and if you are an alien (female), you can participate in other quests.

How would I make something human exclusive?

Posted

Re: If you are a certain gender you can do different things than another?

 

if ($ir['gender'] == 'Male') {
// Meh...
} else if ($ir['gender'] == 'Female') {
// Mehh? xD
}
Posted

Re: If you are a certain gender you can do different things than another?

This did not work, here's what I got:

 

<?
include "globals.php";
if ($ir['gender'] == 'Human') {
// Meh...
} else if ($ir['gender'] == 'Alien') {
// Mehh? xD
}
?>

 

Please note that instead of Male and Female, it is Human and Alien

Posted

Re: If you are a certain gender you can do different things than another?

well f.. imagine that.

gender is Male and Female as karlos has stated on there.

People (I know i'll get bashed for this) If you want Help you have to have common sense. I mean if you don't then you are definitely trying to do the wrong stuff. this is not flipping burgers here.

(Don't play the I'm learning this and that. I learned to, and from reading manuals not asking for help for the simplest crap. Can't learn with reading again, this shows you are not smart enough for this.)

Sorry, just sick of people asking the dumbest things. i know every needs help but when it's the same people over and over and over, on the smallest simplest, and they get pointed in right direct. and still can't do it. That shows one of 2 things, they are to stupid. or they just want someone to do it for them.

 

Legrolls, this is not pointed only at you. It's pointed to all people doing this.

Posted

Re: If you are a certain gender you can do different things than another?

 

This did not work, here's what I got:

 

<?
include "globals.php";
if ($ir['gender'] == 'Human') {
// Meh...
} else if ($ir['gender'] == 'Alien') {
// Mehh? xD
}
?>

 

Please note that instead of Male and Female, it is Human and Alien

Maybe you change the //Meh to something else -.- +1 Alabama.

Posted

Re: If you are a certain gender you can do different things than another?

 

<?php
switch($ir['gender']) {
 case 'Human':
        echo 'I\'m Human';
 break;
 case 'Alien':
        echo 'I\'m Alien';
 break;
 default:
        echo 'Invalid!';
 break;
}

Or

<?php
echo (($ir['gender'] == 'Human') ? 'Human' : 'Alien');
Posted

Re: If you are a certain gender you can do different things than another?

 

well f.. imagine that.

gender is Male and Female as karlos has stated on there.

People (I know i'll get bashed for this) If you want Help you have to have common sense. I mean if you don't then you are definitely trying to do the wrong stuff. this is not flipping burgers here.

(Don't play the I'm learning this and that. I learned to, and from reading manuals not asking for help for the simplest crap. Can't learn with reading again, this shows you are not smart enough for this.)

Sorry, just sick of people asking the dumbest things. i know every needs help but when it's the same people over and over and over, on the smallest simplest, and they get pointed in right direct. and still can't do it. That shows one of 2 things, they are to stupid. or they just want someone to do it for them.

 

Legrolls, this is not pointed only at you. It's pointed to all people doing this.

I took your advice, now can you help me please? I read a manual and now I get stuck here, What do I do after?

<?php

What do I do now? How do I make it so I can buy stuff?

Posted

Re: If you are a certain gender you can do different things than another?

CrazyT, thank you so much. +1

Alabama Hit, I know what you mean. Seriously, I'm just trying to make my game original. Thanks for the previous help, though.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...