add this somewhere
Code:
void use_debug_startup()//starter function, engine calls it on the startup
{
while(1)
{
if(key_o)
{
show_debug();
while(key_o){wait(1);}
}
wait(1);
}
}


not sure why on_o doesn't work, have you defined it within a function?