Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Script Help How to make a function run from other functions.
FlawlessHappiness Offline
Posting Freak

Posts: 3,980
Threads: 145
Joined: Mar 2012
Reputation: 171
#2
RE: How to make a function run from other functions.

How about just:

void A()
{

}

void B()
{

}

void C()
{

}

void D()
{

}

Now just edit them.

To call them use:


void CallFunctions()
{
A();
B();
C();
D();
}

I think that's how it works.

Trying is the first step to success.
02-02-2014, 04:08 PM
Find


Messages In This Thread
RE: How to make a function run from other functions. - by FlawlessHappiness - 02-02-2014, 04:08 PM



Users browsing this thread: 1 Guest(s)