Hi!

Im using a simple code, such as this:
Code:

action bullet
{
....
myFunction(you)
....
}

function myFunction(ent)
{
while(ent) // <- no problem, works
{
if(ent._fireflag) // <- here I get error when compiling: unknown _arg1 parameter!
....




If I use you=ent; before and then try to set or read skills everything works fine.
If I just check if the ent exist if(ent) I get no errors


Can anyone please tell me what's wrong with my code?
Or how I can solve it.


nipx