That was an error message that appeared on the game screen and then somehow let the game start anyways when i entered this code for trying to get my problem solved. I apologize for not posting it earlier. Here it is and let me know if u need to see more code or if u can tell what should be done:
action monster_ai()
{
c_scan(me.x,360,vector(360,360,0),IGNORE_ME);
}
action operate_monsters_act()
{
grav_rule_act();
monster_ai();
}
action operate_player_act()
{
stand_player_act();
grav_rule_act();
move_forward_act();
turnl_act();
turnr_act();
camera_folo_func();
move_back_act();
}
function main()
{
level_load("prototype.wmb");
ent_create("player.mdl",vector(150,400,-400),operate_player_act);
ent_create("demon.mdl",vector(300,-1500,-395),operate_monsters_act);
}