all i want is a cog to play a key, so i can hotkey the cog, and kyle will play the key or whatever. plz
Producer->Prey->Predator
This is the static archive of the Massassi Forums. The forums are
closed indefinitely. Thanks for all the memories!
You can also download
Super Old Archived Message Boards
from when Massassi first started.
"View" counts are as of the day the forums were archived, and will no longer increase.
# hotkey.cog # # Play a key with the local player. # # [SM] #======================================================================# symbols keyframe key=yourKey.key local thing player local int animID local message activated end #======================================================================# code #---------------------------------------------------------------- activated: player=GetLocalPlayerThing(); animID=PlayKey(player, key, 1, 0x30); Return; #---------------------------------------------------------------- end