Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
spiderbot.qh
Go to the documentation of this file.
1#pragma once
2
4
6/* spawnflags */ ATTRIB(Spiderbot, spawnflags, int, VHF_DMGSHAKE);
7/* mins */ ATTRIB(Spiderbot, m_mins, vector, '-75 -75 10');
8/* maxs */ ATTRIB(Spiderbot, m_maxs, vector, '75 75 125');
9/* view offset*/ ATTRIB(Spiderbot, view_ofs, vector, '0 0 70');
10/* view dist */ ATTRIB(Spiderbot, height, float, 170);
11#ifdef GAMEQC
12/* model */ ATTRIB(Spiderbot, mdl, string, "models/vehicles/spiderbot.dpm");
13/* model */ ATTRIB(Spiderbot, model, string, "models/vehicles/spiderbot.dpm");
14/* head_model */ ATTRIB(Spiderbot, head_model, string, "models/vehicles/spiderbot_top.dpm");
15/* hud_model */ ATTRIB(Spiderbot, hud_model, string, "models/vehicles/spiderbot_cockpit.dpm");
16/* tags */ ATTRIB(Spiderbot, tag_head, string, "tag_head");
17/* tags */ ATTRIB(Spiderbot, tag_hud, string, "tag_hud");
18/* tags */ ATTRIB(Spiderbot, tag_view, string, "");
19#endif
20/* netname */ ATTRIB(Spiderbot, netname, string, "spiderbot");
21/* fullname */ ATTRIB(Spiderbot, m_name, string, _("Spiderbot"));
22/* icon */ ATTRIB(Spiderbot, m_icon, string, "vehicle_spider");
24
vector view_ofs
Definition spiderbot.qh:9
string head_model
Definition spiderbot.qh:14
string m_icon
Definition spiderbot.qh:22
vector m_maxs
Definition spiderbot.qh:8
string hud_model
Definition spiderbot.qh:15
string mdl
Definition spiderbot.qh:12
string tag_head
Definition spiderbot.qh:16
string tag_view
Definition spiderbot.qh:18
string m_name
Definition spiderbot.qh:21
string netname
Definition spiderbot.qh:20
vector m_mins
Definition spiderbot.qh:7
string tag_hud
Definition spiderbot.qh:17
float height
Definition spiderbot.qh:10
int spawnflags
Definition spiderbot.qh:6
string model
Definition spiderbot.qh:13
ATTRIB(Vehicle, m_icon, string)
hud icon
#define NEW(cname,...)
Definition oo.qh:117
#define CLASS(...)
Definition oo.qh:145
#define ENDCLASS(cname)
Definition oo.qh:281
#define ATTRIB(...)
Definition oo.qh:148
vector
Definition self.qh:92
const int VHF_DMGSHAKE
Vehicle is airborn.
Definition vehicle.qh:93
#define REGISTER_VEHICLE(id, inst)
Definition all.qh:12