Just The Odd Bit Of Help Needed


Splinter

Member
Joined
Jan 19, 2004
Messages
230
Age
35
Location
Donny, England (follow signs that say craphole)
Website
gp32place.150m.com
Hi there, im creating a few small games to get to grips better with Fenix. I have a type of game where as the menu reloads after dying, i want to kill all the processes for balls that are on screen.

Ive been using the line:

Code:
signal(type ball(),s_kill);

aftet starting the menu but when trying to compile i get the error:

"......Incorrect number of parameters ("ball")"

Sorry, found the solution to the problem, just had to remove the brackets....sorry can mods delete this please?
 
Goity posted on Dec 1 2005 at 06:41 PM said:
You can also just type
Return;
If you're killing the process on it's own.

That was what i had origonally but i needed to kill more than one process and some were not related directly to others in the end so it was never going to work but i managed to get it using:

Code:
signal(type ball,s_kill);

Thanks though....
 
Last edited by a moderator:
Back
Top