💻
pasteware
  • Introduction
  • Namespaces
    • engine_client
    • global_vars
    • renderer
    • config
    • math
    • input
    • cheat
  • Hooks
    • CreateMove
    • PaintTraverse
    • FrameStageNotify
  • Types
    • CUserCmd
    • ang_t
    • vec3_t
    • vec2_t
    • color_t
Powered by GitBook
On this page

Was this helpful?

  1. Hooks

CreateMove

Called once a tick.

PreviouscheatNextPaintTraverse

Last updated 4 years ago

Was this helpful?

Example

function on_create_move( cmd ) {
    print( "Hello, world!" );
    return cmd;
}

hook.add( "CreateMove", "on_create_move" );

CUserCmd