Posted by fourwood on September 05, 1998 at 14:24:22:
I can't get it to work. Here's my cog. I'm using the tut that was posted here a while ago.
symbols
message startup
message playeractionend
# ========================================================================================
code
startup:
SetActionCog(GetSelfCog(), 0x7fffffff);
return;
playeraction:
if(GetParam(0) == 0.0)
ReturnEx(0.0); // cant jump!
else
ReturnEx(1.0);
return;end