Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
nexball.qc
Go to the documentation of this file.
1#include "nexball.qh"
2
3#ifdef MENUQC
4#include "weapon.qh"
5
6METHOD(NexBall, describe, string(NexBall this))
7{
8 TC(NexBall, this);
10 PAR(_("%s is a fun ball sport game where 2 teams compete to score the most goals."), COLORED_NAME(this));
11 PAR(_("%s is usually played as either soccer where players walk into the ball to kick it around, or basketball where players have a %s so they can pass the ball and intercept passes."), COLORED_NAME(this), COLORED_NAME(WEP_NEXBALL));
12 PAR(_("Keep in mind players can score own goals, so don't embarrass yourself in front of your team!"));
13 return PAGE_TEXT;
14}
15#endif
#define COLORED_NAME(this)
Definition color.qh:195
#define TC(T, sym)
Definition _all.inc:82
#define METHOD(cname, name, prototype)
Definition oo.qh:269
#define PAGE_TEXT
Definition string.qh:643
#define PAR(...)
Adds an individually translatable paragraph to PAGE_TEXT without having to deal with strcat and sprin...
Definition string.qh:649
#define PAGE_TEXT_INIT()
Definition string.qh:642