]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/cheats.qh
Merge branch 'master' into terencehill/bot_ai
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / cheats.qh
1 #pragma once
2
3 #include <common/impulses/all.qh>
4
5 //float autocvar_sv_cheats; // must... declare... global
6
7 float cheatcount_total;
8 .float cheatcount;
9 void CheatInit();
10 void CheatShutdown();
11 float CheatImpulse(entity this, int imp);
12 float CheatCommand(entity this, int argc);
13 float CheatFrame(entity this);
14
15 const float CHRAME_DRAG = 8;
16
17 void Drag_MoveDrag(entity from, entity to); // call this from CopyBody
18 void DragBox_Think(entity this);
19 float Drag(entity this, float force_allow_pick, float ischeat);
20 void Drag_Begin(entity dragger, entity draggee, vector touchpoint);
21 void Drag_Finish(entity dragger);
22 float Drag_IsDraggable(entity draggee);
23 float Drag_MayChangeAngles(entity draggee);
24 void Drag_MoveForward(entity dragger);
25 void Drag_SetSpeed(entity dragger, float s);
26 void Drag_MoveBackward(entity dragger);
27 void Drag_Update(entity dragger);
28 float Drag_CanDrag(entity dragger);
29 float Drag_IsDragging(entity dragger);
30 void Drag_MoveDrag(entity from, entity to);