Thursday 5 March 2009

Make A Shop Part 2

Ok soo lets make the house you buy then.

make a button and then type in this

on (release) {
if (_root.b1 > 1) {
Day +=1
Energy =125
}

Simple as that enjoy rember plz report any errors and i will try and fix them ...

Make A Shop Part 1

Ok so you can work and get money but whats the point when you cant buy things,
well here you go a simple Shop were you can buy houses.

Ok first make the button were you will buy the house and type this .....

on (release) {
if (_root.cash > 199){
_root.b1 =2 ;
}if (_root.b1 > 2){
_root.buy1 ='Bought' ;
}
}

Ok this is what happens first the code says on relase i want you too if the player has above 199
cash set b1 too 2 and if b1 is 2 set buy1 as Bought ....

(((( Part 2 coming soon and will make the house you bought ))))))

Sunday 1 February 2009

Gym Button (Str Training)

To make a Gym button first make the button itself, and remember make sure
the buttons a button not a movie clip.

Add this action script to the button

on (release) {
if (_root.Energy > 49){
_root.Energy -=50 ;
}
if (_root.Energy > 49){
_root.Str +=1 ;
}
}



The code basicly means if energy is 50 or above then take away 50 energy and add 1 Str.

Work Button

To make a work button first make the button itself, and remember make sure
the buttons a button not a movie clip.

Add this action script to the button

on (release) {
if (_root.Energy > 24)
{_root.Energy -=25 ;
}
if (_root.Energy > 24)
{_root.Cash +=25 ;
}
}


The code basicly means if energy is 25 or above then take away 25 energy and add 25 cash.

Making the game playable.

To make the game playable you have to actually be able to see what your doing ....
by this I mean when you click a button you see the effects, to do this do the following.

.Make sure you've done

How To Get Started

.Make 5 text box and change them from static text to dynamic text.

.Type the words Clev, Str, Cash, Energy and Day into the box's so now when you
play you will be able to see the effects such as say you click a button that effects your energy
the energy text box will change.

Sleep (rest) Button

Very simple make a button and add this code

on (release) {
Day +=1
Energy =100
}


This means that on release add 1 to day and make energy 100.

Saturday 31 January 2009

What Rpg Features will the game have.

This newgrounds sim type game will have the following features.

.Sleep
.Work
.Days
.Shop
.2 stats
.Gym
.Libary
.Home

You CAN add more this script is fully customizable

How to Get Started

Ever wanted to make your own game like newgrounds sim ??? well you can !!!

Ok first of id like to point out this is for flash as2.

Now lets get started open up flash and make a new document, now
open up the action script pannel and type in the following

stop();
Energy =100
Str =5
clev =5
day =1
buy1 ='not bought'
b1 =1
Cash =1000

part 2 comming soon and will involve how to make work and sleep buttons.