Page 1 of 1

Need help with my game vol 2

PostPosted: Fri Jun 08, 2012 6:16 am
by Pengaboy
[edited at 15:38 9.06.2012]
hi everybody another +1 is waiting his/her owner
how to make this effect like:
i have cashsystem in my game but how to make that if i have 5000 cash
and cheapest house cost like 50000 then i cant buy it and my 5000 cash doest go away and also the house is not bought
so it shows me text like this: You don't have enough money to buy this house!

textactor : cash
variable : moneysystem (integer/global/array:no)

thanks for any help

Re: Need help with my game vol 2

PostPosted: Fri Jun 08, 2012 6:45 am
by MrJolteon
Code: Select all
if(cash=<50000)
{
//Don't allow purchase
}

Or something like that

Re: Need help with my game vol 2

PostPosted: Fri Jun 08, 2012 1:03 pm
by SuperSonic
Actually, when the player tries to buy the house, do this:
Code: Select all
if(cash >= 50000)
{
    cash -= 50000;
    //Give house to player
}
:wink:

Re: Need help with my game vol 2

PostPosted: Fri Jun 08, 2012 1:08 pm
by MrJolteon
Ah
Those symbols confuses me sometimes xD

Re: Need help with my game vol 2

PostPosted: Fri Jun 08, 2012 2:11 pm
by Pengaboy
a little more explaining or demo would be very useful
thnx :D

Re: Need help with my game vol 2

PostPosted: Fri Jun 08, 2012 3:47 pm
by happyjustbecause
Code: Select all
if(cash >= 50000)
{
    cash -= 50000;
    //Give house to player
}


Well this just means:

Code: Select all
if(cash >= 50000) // if the player has greater than or equal to 50000 dollars, run the code below
{
    cash -= 50000; // this minuses the amount for the house
    //Give house to player
}


And maybe you could have something like this code to have text pop up, saying you can't buy it:

Code: Select all
if(cash >= 50000) // if the player has greater than or equal to 50000 cash, run the code below
{
    cash -= 50000; // this minuses the amount for the house
    //Give house to player
}
else // if player has less than 50000 cash
{
   CreateActor("Store_Text", "Can't Buy This", FORWARD); // This is if you had animations for your menu, rather than just text pop up
}

Re: Need help with my game vol 2

PostPosted: Fri Jun 08, 2012 9:27 pm
by SuperSonic
Yeah, there are many different methods to accomplish the task you want, but that's the basic code you'll have to use :P