]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/t_items.qc
remove all 2.4.2 compatibility code (do not merge this into 2.5 bugfix releases)
[divverent/nexuiz.git] / data / qcsrc / server / t_items.qc
1 floatfield Item_CounterField(float it)
2 {
3         switch(it)
4         {
5                 case IT_SHELLS:      return ammo_shells;
6                 case IT_NAILS:       return ammo_nails;
7                 case IT_ROCKETS:     return ammo_rockets;
8                 case IT_CELLS:       return ammo_cells;
9                 case IT_FUEL:        return ammo_fuel;
10                 case IT_5HP:         return health;
11                 case IT_25HP:        return health;
12                 case IT_HEALTH:      return health;
13                 case IT_ARMOR_SHARD: return armorvalue;
14                 case IT_ARMOR:       return armorvalue;
15                 // add more things here (health, armor)
16                 default:             error("requested item has no counter field");
17         }
18 }
19
20 string Item_CounterFieldName(float it)
21 {
22         switch(it)
23         {
24                 case IT_SHELLS:      return "shells";
25                 case IT_NAILS:       return "nails";
26                 case IT_ROCKETS:     return "rockets";
27                 case IT_CELLS:       return "cells";
28                 case IT_FUEL:        return "fuel";
29
30                 // add more things here (health, armor)
31                 default:             error("requested item has no counter field name");
32         }
33 }
34
35 .float max_armorvalue;
36
37 void Item_Respawn (void)
38 {
39         self.model = self.mdl;          // restore original model
40         self.solid = SOLID_TRIGGER;     // allow it to be touched again
41         sound (self, CHAN_TRIGGER, "misc/itemrespawn.wav", VOL_BASE, ATTN_NORM);        // play respawn sound
42         setorigin (self, self.origin);
43
44         //pointparticles(particleeffectnum("item_respawn"), self.origin + self.mins_z * '0 0 1' + '0 0 48', '0 0 0', 1);
45         pointparticles(particleeffectnum("item_respawn"), self.origin + 0.5 * (self.mins + self.maxs), '0 0 0', 1);
46 }
47
48 float Item_GiveTo(entity item, entity player)
49 {
50         float _switchweapon;
51         float pickedup;
52         float it;
53         float i;
54         entity e;
55
56         // if nothing happens to player, just return without taking the item
57         pickedup = FALSE;
58         _switchweapon = FALSE;
59
60         if (g_minstagib)
61         {
62                 _switchweapon = TRUE;
63                 if (item.ammo_cells)
64                 {
65                         pickedup = TRUE;
66                         // play some cool sounds ;)
67                         centerprint(player, "\n");
68                         if(player.health <= 5)
69                                 announce(player, "announcer/robotic/lastsecond.wav");
70                         else if(player.health < 50)
71                                 announce(player, "announcer/robotic/narrowly.wav");
72                         // sound not available
73                         // else if(item.items == IT_CELLS)
74                         //      play2(player, "announce/robotic/ammo.wav");
75
76                         if (item.weapons & WEPBIT_MINSTANEX)
77                                 W_GiveWeapon (player, WEP_MINSTANEX, "Nex");
78                         if (item.ammo_cells)
79                                 player.ammo_cells = min (player.ammo_cells + cvar("g_minstagib_ammo_drop"), 999);
80                         player.health = 100;
81                 }
82
83                 // extralife powerup
84                 if (item.max_health)
85                 {
86                         pickedup = TRUE;
87                         // sound not available
88                         // play2(player, "announce/robotic/extra.ogg\nplay2 announce/robotic/_lives.wav");
89                         player.armorvalue = player.armorvalue + cvar("g_minstagib_extralives");
90                         sprint(player, "^3You picked up some extra lives\n");
91                 }
92
93                 // invis powerup
94                 if (item.strength_finished)
95                 {
96                         pickedup = TRUE;
97                         // sound not available
98                         // play2(player, "announce/robotic/invisible.wav");
99                         player.strength_finished = max(player.strength_finished, time) + cvar("g_balance_powerup_strength_time");
100                 }
101
102                 // speed powerup
103                 if (item.invincible_finished)
104                 {
105                         pickedup = TRUE;
106                         // sound not available
107                         // play2(player, "announce/robotic/speed.wav");
108                         player.invincible_finished = max(player.invincible_finished, time) + cvar("g_balance_powerup_strength_time");
109                 }
110         }
111         else
112         {
113                 if (g_weapon_stay == 1)
114                 if not(item.flags & FL_NO_WEAPON_STAY)
115                 if (item.flags & FL_WEAPON)
116                 {
117                         if(item.classname == "droppedweapon")
118                         {
119                                 if (player.weapons & item.weapons)      // don't let players stack ammo by tossing weapons
120                                         goto skip;
121                         }
122                         else
123                         {
124                                 if (player.weapons & item.weapons)
125                                         goto skip;
126                         }
127                 }
128
129                 // in case the player has autoswitch enabled do the following:
130                 // if the player is using their best weapon before items are given, they
131                 // probably want to switch to an even better weapon after items are given
132                 if (player.autoswitch)
133                 if (player.switchweapon == w_getbestweapon(player))
134                         _switchweapon = TRUE;
135
136                 if not(player.weapons & W_WeaponBit(player.switchweapon))
137                         _switchweapon = TRUE;
138
139                 if (item.ammo_shells)
140                 if (player.ammo_shells < g_pickup_shells_max)
141                 {
142                         pickedup = TRUE;
143                         player.ammo_shells = min (player.ammo_shells + item.ammo_shells, g_pickup_shells_max);
144                 }
145                 if (item.ammo_nails)
146                 if (player.ammo_nails < g_pickup_nails_max)
147                 {
148                         pickedup = TRUE;
149                         player.ammo_nails = min (player.ammo_nails + item.ammo_nails, g_pickup_nails_max);
150                 }
151                 if (item.ammo_rockets)
152                 if (player.ammo_rockets < g_pickup_rockets_max)
153                 {
154                         pickedup = TRUE;
155                         player.ammo_rockets = min (player.ammo_rockets + item.ammo_rockets, g_pickup_rockets_max);
156                 }
157                 if (item.ammo_cells)
158                 if (player.ammo_cells < g_pickup_cells_max)
159                 {
160                         pickedup = TRUE;
161                         player.ammo_cells = min (player.ammo_cells + item.ammo_cells, g_pickup_cells_max);
162                 }
163                 if (item.ammo_fuel)
164                 if (player.ammo_fuel < g_pickup_fuel_max)
165                 {
166                         pickedup = TRUE;
167                         player.ammo_fuel = min(player.ammo_fuel + item.ammo_fuel, g_pickup_fuel_max);
168                         player.pauserotfuel_finished = max(player.pauserotfuel_finished, time + cvar("g_balance_pause_fuel_rot"));
169                 }
170
171                 if (item.flags & FL_WEAPON)
172                 if ((it = item.weapons - (item.weapons & player.weapons)))
173                 {
174                         pickedup = TRUE;
175                         for(i = WEP_FIRST; i <= WEP_LAST; ++i)
176                         {
177                                 e = get_weaponinfo(i);
178                                 if(it & e.weapons)
179                                         W_GiveWeapon (player, e.weapon, item.netname);
180                         }
181                 }
182
183                 if((it = (item.items - (item.items & player.items)) & IT_PICKUPMASK))
184                 {
185                         pickedup = TRUE;
186                         player.items |= it;
187                 }
188
189                 if (item.strength_finished)
190                 {
191                         pickedup = TRUE;
192                         player.strength_finished = max(player.strength_finished, time) + cvar("g_balance_powerup_strength_time");
193                 }
194                 if (item.invincible_finished)
195                 {
196                         pickedup = TRUE;
197                         player.invincible_finished = max(player.invincible_finished, time) + cvar("g_balance_powerup_invincible_time");
198                 }
199                 //if (item.speed_finished)
200                 //{
201                 //      pickedup = TRUE;
202                 //      player.speed_finished = max(player.speed_finished, time) + cvar("g_balance_powerup_speed_time");
203                 //}
204                 //if (item.slowmo_finished)
205                 //{
206                 //      pickedup = TRUE;
207                 //      player.slowmo_finished = max(player.slowmo_finished, time) + (cvar("g_balance_powerup_slowmo_time") * cvar("g_balance_powerup_slowmo_speed"));
208                 //}
209
210                 if (item.health)
211                 if (player.health < item.max_health)
212                 {
213                         pickedup = TRUE;
214                         player.health = min(player.health + item.health, item.max_health);
215                         player.pauserothealth_finished = max(player.pauserothealth_finished, time + cvar("g_balance_pause_health_rot"));
216                 }
217                 if (item.armorvalue)
218                 if (player.armorvalue < item.max_armorvalue)
219                 {
220                         pickedup = TRUE;
221                         player.armorvalue = min(player.armorvalue + item.armorvalue, item.max_armorvalue);
222                         player.pauserotarmor_finished = max(player.pauserotarmor_finished, time + cvar("g_balance_pause_armor_rot"));
223                 }
224         }
225
226 :skip
227         // always eat teamed entities
228         if(item.team)
229                 pickedup = TRUE;
230
231         if (!pickedup)
232                 return 0;
233
234         sound (player, CHAN_AUTO, item.item_pickupsound, VOL_BASE, ATTN_NORM);
235         if (_switchweapon)
236                 if (player.switchweapon != w_getbestweapon(player))
237                         W_SwitchWeapon_Force(player, w_getbestweapon(player));
238
239         return 1;
240 }
241
242 void Item_Touch (void)
243 {
244         entity e, head;
245
246         // remove the item if it's currnetly in a NODROP brush or hits a NOIMPACT surface (such as sky)
247         if (((trace_dpstartcontents | trace_dphitcontents) & DPCONTENTS_NODROP) || (trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT))
248         {
249                 remove(self);
250                 return;
251         }
252         if (other.classname != "player")
253                 return;
254         if (other.deadflag)
255                 return;
256         if (self.solid != SOLID_TRIGGER)
257                 return;
258         if (self.owner == other)
259                 return;
260
261         if(!Item_GiveTo(self, other))
262                 return;
263
264         if (self.classname == "droppedweapon")
265                 remove (self);
266         else if((self.flags & FL_WEAPON) && !(self.flags & FL_NO_WEAPON_STAY) && g_weapon_stay)
267                 return;
268         else
269         {
270                 self.solid = SOLID_NOT;
271                 self.model = string_null;
272                 if(self.team)
273                 {
274                         RandomSelection_Init();
275                         for(head = world; (head = findfloat(head, team, self.team)); ) if(head.flags & FL_ITEM)
276                                 RandomSelection_Add(head, 0, head.cnt, 0);
277                         e = RandomSelection_chosen_ent;
278                 }
279                 else
280                         e = self;
281                 e.nextthink = time + self.respawntime;
282                 e.think = Item_Respawn;
283         }
284 }
285
286 void Item_FindTeam()
287 {
288         entity head, e;
289
290         if(self.effects & EF_NODRAW)
291         {
292                 // marker for item team search
293                 dprint("Initializing item team ", ftos(self.team), "\n");
294                 RandomSelection_Init();
295                 for(head = world; (head = findfloat(head, team, self.team)); ) if(head.flags & FL_ITEM)
296                         RandomSelection_Add(head, 0, head.cnt, 0);
297                 e = RandomSelection_chosen_ent;
298                 e.state = 0;
299
300                 for(head = world; (head = findfloat(head, team, self.team)); ) if(head.flags & FL_ITEM)
301                 {
302                         if(head != e)
303                         {
304                                 // make it a non-spawned item
305                                 head.solid = SOLID_NOT;
306                                 head.model = string_null;
307                                 head.state = 1; // state 1 = initially hidden item
308                         }
309                         head.effects = head.effects - (head.effects & EF_NODRAW);
310                 }
311         }
312 }
313
314 void Item_Reset()
315 {
316         if(self.state == 1)
317         {
318                 self.model = string_null;
319                 self.solid = SOLID_NOT;
320         }
321         else
322         {
323                 self.model = self.mdl;
324                 self.solid = SOLID_TRIGGER;
325         }
326         setorigin (self, self.origin);
327         self.think = SUB_Null;
328         self.nextthink = 0;
329 }
330
331 // Savage: used for item garbage-collection
332 // TODO: perhaps nice special effect?
333 void RemoveItem(void)
334 {
335         remove(self);
336 }
337
338 // pickup evaluation functions
339 // these functions decide how desirable an item is to the bots
340
341 float generic_pickupevalfunc(entity player, entity item) {return item.bot_pickupbasevalue;};
342
343 float weapon_pickupevalfunc(entity player, entity item)
344 {
345         // if we already have the weapon, rate it 1/5th normal value
346         if ((player.weapons & item.weapons) == item.weapons)
347                 return item.bot_pickupbasevalue * 0.2;
348         return item.bot_pickupbasevalue;
349 };
350
351 float commodity_pickupevalfunc(entity player, entity item)
352 {
353         float c;
354         c = 0;
355         // TODO: figure out if the player even has the weapon this ammo is for?
356         // may not affect strategy much though...
357         // find out how much more ammo/armor/health the player can hold
358         if (item.ammo_shells)
359         if (player.ammo_shells < g_pickup_shells_max)
360                 c = c + max(0, 1 - player.ammo_shells / g_pickup_shells_max);
361         if (item.ammo_nails)
362         if (player.ammo_nails < g_pickup_nails_max)
363                 c = c + max(0, 1 - player.ammo_nails / g_pickup_nails_max);
364         if (item.ammo_rockets)
365         if (player.ammo_rockets < g_pickup_rockets_max)
366                 c = c + max(0, 1 - player.ammo_rockets / g_pickup_rockets_max);
367         if (item.ammo_cells)
368         if (player.ammo_cells < g_pickup_cells_max)
369                 c = c + max(0, 1 - player.ammo_cells / g_pickup_cells_max);
370         if (item.armorvalue)
371         if (player.armorvalue < item.max_armorvalue)
372                 c = c + max(0, 1 - player.armorvalue / item.max_armorvalue);
373         if (item.health)
374         if (player.health < item.max_health)
375                 c = c + max(0, 1 - player.health / item.max_health);
376
377         return item.bot_pickupbasevalue * c;
378 };
379
380
381 .float is_item;
382 void StartItem (string itemmodel, string pickupsound, float defaultrespawntime, string itemname, float itemid, float weaponid, float itemflags, float(entity player, entity item) pickupevalfunc, float pickupbasevalue)
383 {
384         startitem_failed = FALSE;
385
386         // is it a dropped weapon?
387         if (self.classname == "droppedweapon")
388         {
389                 self.reset = SUB_Remove;
390                 // it's a dropped weapon
391                 self.movetype = MOVETYPE_TOSS;
392                 self.solid = SOLID_TRIGGER;
393                 // Savage: remove thrown items after a certain period of time ("garbage collection")
394                 self.think = RemoveItem;
395                 self.nextthink = time + 60;
396                 // don't drop if in a NODROP zone (such as lava)
397                 traceline(self.origin, self.origin, MOVE_NORMAL, self);
398                 if (trace_dpstartcontents & DPCONTENTS_NODROP)
399                 {
400                         startitem_failed = TRUE;
401                         remove(self);
402                         return;
403                 }
404         }
405         else
406         {
407                 self.reset = Item_Reset;
408                 // it's a level item
409                 if(self.spawnflags & 1)
410                         self.noalign = 1;
411                 if (self.noalign)
412                         self.movetype = MOVETYPE_NONE;
413                 else
414                         self.movetype = MOVETYPE_TOSS;
415                 self.solid = SOLID_TRIGGER;
416                 // do item filtering according to game mode and other things
417                 if (!self.noalign)
418                 {
419                         // first nudge it off the floor a little bit to avoid math errors
420                         setorigin(self, self.origin + '0 0 1');
421                         // set item size before we spawn a spawnfunc_waypoint
422                         if((itemflags & FL_POWERUP) || self.health || self.armorvalue)
423                                 setsize (self, '-16 -16 0', '16 16 48');
424                         else
425                                 setsize (self, '-16 -16 0', '16 16 32');
426                         // note droptofloor returns FALSE if stuck/or would fall too far
427                         droptofloor();
428                         waypoint_spawnforitem(self);
429                 }
430
431                 if(teams_matter)
432                 {
433                         if(self.notteam)
434                         {
435                                 print("removed non-teamplay ", self.classname, "\n");
436                                 startitem_failed = TRUE;
437                                 remove (self);
438                                 return;
439                         }
440                 }
441                 else
442                 {
443                         if(self.notfree)
444                         {
445                                 print("removed non-FFA ", self.classname, "\n");
446                                 startitem_failed = TRUE;
447                                 remove (self);
448                                 return;
449                         }
450                 }
451
452                 if(self.notq3a)
453                 {
454                         // We aren't TA or something like that, so we keep the Q3A entities
455                         print("removed non-Q3A ", self.classname, "\n");
456                         startitem_failed = TRUE;
457                         remove (self);
458                         return;
459                 }
460
461                 /*
462                  * can't do it that way, as it would break maps
463                  * TODO make a target_give like entity another way, that perhaps has
464                  * the weapon name in a key
465                 if(self.targetname)
466                 {
467                         // target_give not yet supported; maybe later
468                         print("removed targeted ", self.classname, "\n");
469                         startitem_failed = TRUE;
470                         remove (self);
471                         return;
472                 }
473                 */
474
475                 if(cvar("spawn_debug") >= 2)
476                 {
477                         entity otheritem;
478                         for(otheritem = findradius(self.origin, 3); otheritem; otheritem = otheritem.chain)
479                         {
480                                 if(otheritem.is_item)
481                                 {
482                                         dprint("XXX Found duplicated item: ", itemname, vtos(self.origin));
483                                         dprint(" vs ", otheritem.netname, vtos(otheritem.origin), "\n");
484                                         error("Mapper sucks.");
485                                 }
486                         }
487                         self.is_item = TRUE;
488                 }
489
490                 weaponsInMap |= weaponid;
491
492                 if(g_lms)
493                 {
494                         startitem_failed = TRUE;
495                         remove(self);
496                         return;
497                 }
498                 else if (g_weaponarena && ((weaponid & WEPBIT_ALL) || (itemid & IT_AMMO)))
499                 {
500                         startitem_failed = TRUE;
501                         remove(self);
502                         return;
503                 }
504                 else if (g_minstagib)
505                 {
506                         // don't remove dropped items and powerups
507                         if (self.classname != "minstagib")
508                         {
509                                 startitem_failed = TRUE;
510                                 remove (self);
511                                 return;
512                         }
513                 }
514                 else if ((!cvar("g_pickup_items") || g_nixnex) && itemid != IT_STRENGTH && itemid != IT_INVINCIBLE && itemid != IT_HEALTH)
515                 {
516                         startitem_failed = TRUE;
517                         remove (self);
518                         return;
519                 }
520
521                 precache_model (itemmodel);
522                 precache_sound (pickupsound);
523                 precache_sound ("misc/itemrespawn.wav");
524
525                 if((itemid & (IT_STRENGTH | IT_INVINCIBLE | IT_HEALTH | IT_ARMOR | IT_KEY1 | IT_KEY2)) || (weaponid & WEPBIT_ALL))
526                         self.target = "###item###"; // for finding the nearest item using find()
527         }
528
529         self.bot_pickup = TRUE;
530         self.bot_pickupevalfunc = pickupevalfunc;
531         self.bot_pickupbasevalue = pickupbasevalue;
532         self.mdl = itemmodel;
533         self.item_pickupsound = pickupsound;
534         // let mappers override respawntime
535         if (!self.respawntime)
536                 self.respawntime = defaultrespawntime;
537         self.netname = itemname;
538         self.items = itemid;
539         self.weapons = weaponid;
540         self.flags = FL_ITEM | itemflags;
541         self.touch = Item_Touch;
542         setmodel (self, self.mdl); // precision set below
543         self.effects |= EF_LOWPRECISION;
544         if((itemflags & FL_POWERUP) || self.health || self.armorvalue)
545                 setsize (self, '-16 -16 0', '16 16 48');
546         else
547                 setsize (self, '-16 -16 0', '16 16 32');
548         if(itemflags & FL_WEAPON)
549                 self.modelflags |= MF_ROTATE;
550
551         if (self.classname != "droppedweapon") // if dropped, colormap is already set up nicely
552         if (itemflags & FL_WEAPON)
553         {
554                 // neutral team color for pickup weapons
555                 self.colormap = 1024; // color shirt=0 pants=0 grey
556         }
557
558         if (cvar("g_fullbrightitems"))
559                 self.effects = self.effects | EF_FULLBRIGHT;
560
561         self.state = 0;
562         if(self.team)
563         {
564                 if(!self.cnt)
565                         self.cnt = 1; // item probability weight
566                 self.effects = self.effects | EF_NODRAW; // marker for item team search
567                 InitializeEntity(self, Item_FindTeam, INITPRIO_FINDTARGET);
568         }
569 }
570
571 /* replace items in minstagib
572  * IT_STRENGTH   = invisibility
573  * IT_NAILS      = extra lives
574  * IT_INVINCIBLE = speed
575  */
576 void minstagib_items (float itemid)
577 {
578         // we don't want to replace dropped weapons ;)
579         if (self.classname == "droppedweapon")
580         {
581                 self.ammo_cells = 25;
582                 StartItem ("models/weapons/g_nex.md3",
583                         "weapons/weaponpickup.wav", 15,
584                         "MinstaNex", 0, WEPBIT_MINSTANEX, FL_WEAPON, generic_pickupevalfunc, 1000);
585                 return;
586         }
587
588         local float rnd;
589         self.classname = "minstagib";
590
591         // replace rocket launchers and nex guns with ammo cells
592         if (itemid == IT_CELLS)
593         {
594                 self.ammo_cells = 1;
595                 StartItem ("models/items/a_cells.md3",
596                         "misc/itempickup.wav", 45,
597                         "Nex Ammo", IT_CELLS, 0, 0, generic_pickupevalfunc, 100);
598                 return;
599         }
600
601         // randomize
602         rnd = random() * 3;
603         if (rnd <= 1)
604                 itemid = IT_STRENGTH;
605         else if (rnd <= 2)
606                 itemid = IT_NAILS;
607         else
608                 itemid = IT_INVINCIBLE;
609
610         // replace with invis
611         if (itemid == IT_STRENGTH)
612         {
613                 self.effects = EF_ADDITIVE;
614                 self.strength_finished = 30;
615                 StartItem ("models/items/g_strength.md3",
616                         "misc/powerup.wav", g_pickup_respawntime_powerup,
617                         "Invisibility", IT_STRENGTH, 0, FL_POWERUP, generic_pickupevalfunc, BOT_PICKUP_RATING_MID);
618         }
619         // replace with extra lives
620         if (itemid == IT_NAILS)
621         {
622                 self.max_health = 1;
623                 StartItem ("models/items/g_h100.md3",
624                         "misc/megahealth.wav", g_pickup_respawntime_powerup,
625                         "Extralife", IT_NAILS, 0, FL_POWERUP, generic_pickupevalfunc, BOT_PICKUP_RATING_HIGH);
626
627         }
628         // replace with speed
629         if (itemid == IT_INVINCIBLE)
630         {
631                 self.effects = EF_ADDITIVE;
632                 self.invincible_finished = 30;
633                 StartItem ("models/items/g_invincible.md3",
634                         "misc/powerup_shield.wav", g_pickup_respawntime_powerup,
635                         "Speed", IT_INVINCIBLE, 0, FL_POWERUP, generic_pickupevalfunc, BOT_PICKUP_RATING_MID);
636         }
637
638 }
639
640 float minst_no_auto_cells;
641 void minst_remove_item (void) {
642         if(minst_no_auto_cells)
643                 remove(self);
644 }
645
646 float weaponswapping;
647 float internalteam;
648
649 void weapon_defaultspawnfunc(float wpn)
650 {
651         entity e;
652         float t;
653         var .float ammofield;
654         string s;
655         entity oldself;
656         float i, j;
657
658         // set the respawntime in advance (so replaced weapons can copy it)
659         if(!self.respawntime)
660         {
661                 e = get_weaponinfo(wpn);
662                 if(e.items == IT_SUPERWEAPON)
663                         self.respawntime = g_pickup_respawntime_powerup;
664                 else
665                         self.respawntime = g_pickup_respawntime_weapon;
666         }
667
668         if(self.classname != "droppedweapon" && self.classname != "replacedweapon")
669         {
670                 e = get_weaponinfo(wpn);
671                 s = cvar_string(strcat("g_weaponreplace_", e.netname));
672                 if(s == "0")
673                 {
674                         remove(self);
675                         startitem_failed = TRUE;
676                         return;
677                 }
678                 t = tokenize_console(s);
679                 if(t >= 2)
680                 {
681                         self.team = --internalteam;
682                         oldself = self;
683                         for(i = 1; i < t; ++i)
684                         {
685                                 s = argv(i);
686                                 for(j = WEP_FIRST; j <= WEP_LAST; ++j)
687                                 {
688                                         e = get_weaponinfo(j);
689                                         if(e.netname == s)
690                                         {
691                                                 self = spawn();
692                                                 copyentity(oldself, self);
693                                                 self.classname = "replacedweapon";
694                                                 weapon_defaultspawnfunc(j);
695                                                 break;
696                                         }
697                                 }
698                                 if(j > WEP_LAST)
699                                 {
700                                         print("The weapon replace list for ", oldself.classname, " contains an unknown weapon ", s, ". Skipped.\n");
701                                 }
702                         }
703                         self = oldself;
704                 }
705                 if(t >= 1)
706                 {
707                         s = argv(0);
708                         wpn = 0;
709                         for(j = WEP_FIRST; j <= WEP_LAST; ++j)
710                         {
711                                 e = get_weaponinfo(j);
712                                 if(e.netname == s)
713                                 {
714                                         wpn = j;
715                                         break;
716                                 }
717                         }
718                         if(j > WEP_LAST)
719                         {
720                                 print("The weapon replace list for ", self.classname, " contains an unknown weapon ", s, ". Skipped.\n");
721                         }
722                 }
723                 if(wpn == 0)
724                 {
725                         remove(self);
726                         startitem_failed = TRUE;
727                         return;
728                 }
729         }
730
731         e = get_weaponinfo(wpn);
732
733         if(e.items && e.items != IT_SUPERWEAPON)
734         {
735                 ammofield = Item_CounterField(e.items);
736                 if(!self.ammofield)
737                         self.ammofield = cvar(strcat("g_pickup_", Item_CounterFieldName(e.items)));
738         }
739         else
740         {
741                 self.flags |= FL_NO_WEAPON_STAY;
742         }
743
744         // weapon stay isn't supported for teamed weapons
745         if(self.team)
746                 self.flags |= FL_NO_WEAPON_STAY;
747
748         if(g_weapon_stay == 2 && self.classname != "droppedweapon")
749         {
750                 self.ammo_shells = 0;
751                 self.ammo_nails = 0;
752                 self.ammo_cells = 0;
753                 self.ammo_rockets = 0;
754                 // weapon stay 2: don't use ammo on weapon pickups; instead
755                 // initialize all ammo types to the pickup ammo unless set by g_start_ammo_*
756         }
757
758         StartItem(e.model, "weapons/weaponpickup.wav", self.respawntime, e.message, 0, e.weapons, FL_WEAPON, weapon_pickupevalfunc, e.bot_pickupbasevalue);
759         if (self.modelindex) // don't precache if self was removed
760                 weapon_action(e.weapon, WR_PRECACHE);
761 }
762
763 void spawnfunc_weapon_shotgun (void);
764 void spawnfunc_weapon_uzi (void) {
765         if(q3acompat_machineshotgunswap)
766         if(self.classname != "droppedweapon")
767         {
768                 weapon_defaultspawnfunc(WEP_SHOTGUN);
769                 return;
770         }
771         weapon_defaultspawnfunc(WEP_UZI);
772 }
773
774 void spawnfunc_weapon_shotgun (void) {
775         if(q3acompat_machineshotgunswap)
776         if(self.classname != "droppedweapon")
777         {
778                 weapon_defaultspawnfunc(WEP_UZI);
779                 return;
780         }
781         weapon_defaultspawnfunc(WEP_SHOTGUN);
782 }
783
784 void spawnfunc_weapon_nex (void)
785 {
786         if (g_minstagib)
787         {
788                 minstagib_items(IT_CELLS);
789                 self.think = minst_remove_item;
790                 self.nextthink = time;
791                 return;
792         }
793         weapon_defaultspawnfunc(WEP_NEX);
794 }
795
796 void spawnfunc_weapon_minstanex (void)
797 {
798         if (g_minstagib)
799         {
800                 minstagib_items(IT_CELLS);
801                 self.think = minst_remove_item;
802                 self.nextthink = time;
803                 return;
804         }
805         weapon_defaultspawnfunc(WEP_MINSTANEX);
806 }
807
808 void spawnfunc_weapon_rocketlauncher (void)
809 {
810         if (g_minstagib)
811         {
812                 minstagib_items(IT_CELLS);
813                 self.think = minst_remove_item;
814                 self.nextthink = time;
815                 return;
816         }
817         weapon_defaultspawnfunc(WEP_ROCKET_LAUNCHER);
818 }
819
820 void spawnfunc_item_rockets (void) {
821         if(!self.ammo_rockets)
822                 self.ammo_rockets = g_pickup_rockets;
823         StartItem ("models/items/a_rockets.md3", "misc/itempickup.wav", g_pickup_respawntime_ammo, "rockets", IT_ROCKETS, 0, 0, commodity_pickupevalfunc, 3000);
824 }
825
826 void spawnfunc_item_shells (void);
827 void spawnfunc_item_bullets (void) {
828         if(!weaponswapping)
829         if(q3acompat_machineshotgunswap)
830         if(self.classname != "droppedweapon")
831         {
832                 weaponswapping = TRUE;
833                 spawnfunc_item_shells();
834                 weaponswapping = FALSE;
835                 return;
836         }
837
838         if(!self.ammo_nails)
839                 self.ammo_nails = g_pickup_nails;
840         StartItem ("models/items/a_bullets.mdl", "misc/itempickup.wav", g_pickup_respawntime_ammo, "bullets", IT_NAILS, 0, 0, commodity_pickupevalfunc, 2000);
841 }
842
843 void spawnfunc_item_cells (void) {
844         if(!self.ammo_cells)
845                 self.ammo_cells = g_pickup_cells;
846         StartItem ("models/items/a_cells.md3", "misc/itempickup.wav", g_pickup_respawntime_ammo, "cells", IT_CELLS, 0, 0, commodity_pickupevalfunc, 2000);
847 }
848
849 void spawnfunc_item_shells (void) {
850         if(!weaponswapping)
851         if(q3acompat_machineshotgunswap)
852         if(self.classname != "droppedweapon")
853         {
854                 weaponswapping = TRUE;
855                 spawnfunc_item_bullets();
856                 weaponswapping = FALSE;
857                 return;
858         }
859
860         if(!self.ammo_shells)
861                 self.ammo_shells = g_pickup_shells;
862         StartItem ("models/items/a_shells.md3", "misc/itempickup.wav", g_pickup_respawntime_ammo, "shells", IT_SHELLS, 0, 0, commodity_pickupevalfunc, 500);
863 }
864
865 void spawnfunc_item_armor_small (void) {
866         if(!self.armorvalue)
867                 self.armorvalue = g_pickup_armorsmall;
868         if(!self.max_armorvalue)
869                 self.max_armorvalue = g_pickup_armorsmall_max;
870         StartItem ("models/items/g_a1.md3", "misc/armor1.wav", g_pickup_respawntime_short, "5 Armor", IT_ARMOR_SHARD, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_LOW);
871 }
872
873 void spawnfunc_item_armor_medium (void) {
874         if(!self.armorvalue)
875                 self.armorvalue = g_pickup_armormedium;
876         if(!self.max_armorvalue)
877                 self.max_armorvalue = g_pickup_armormedium_max;
878         StartItem ("models/items/g_armormedium.md3", "misc/armor10.wav", g_pickup_respawntime_medium, "25 Armor", IT_ARMOR, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_MID);
879 }
880
881 void spawnfunc_item_armor_big (void) {
882         if(!self.armorvalue)
883                 self.armorvalue = g_pickup_armorbig;
884         if(!self.max_armorvalue)
885                 self.max_armorvalue = g_pickup_armorbig_max;
886         StartItem ("models/items/g_a50.md3", "misc/armor17_5.wav", g_pickup_respawntime_long, "50 Armor", IT_ARMOR, 0, 0, commodity_pickupevalfunc, 20000);
887 }
888
889 void spawnfunc_item_armor_large (void) {
890         if(!self.armorvalue)
891                 self.armorvalue = g_pickup_armorlarge;
892         if(!self.max_armorvalue)
893                 self.max_armorvalue = g_pickup_armorlarge_max;
894         StartItem ("models/items/g_a25.md3", "misc/armor25.wav", g_pickup_respawntime_long, "100 Armor", IT_ARMOR, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_HIGH);
895 }
896
897 void spawnfunc_item_health_small (void) {
898         if(!self.max_health)
899                 self.max_health = g_pickup_healthsmall_max;
900         if(!self.health)
901                 self.health = g_pickup_healthsmall;
902         StartItem ("models/items/g_h1.md3", "misc/minihealth.wav", g_pickup_respawntime_short, "5 Health", IT_5HP, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_LOW);
903 }
904
905 void spawnfunc_item_health_medium (void) {
906         if(!self.max_health)
907                 self.max_health = g_pickup_healthmedium_max;
908         if(!self.health)
909                 self.health = g_pickup_healthmedium;
910         StartItem ("models/items/g_h25.md3", "misc/mediumhealth.wav", g_pickup_respawntime_short, "25 Health", IT_25HP, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_MID);
911 }
912
913 void spawnfunc_item_health_large (void) {
914         if(!self.max_health)
915                 self.max_health = g_pickup_healthlarge_max;
916         if(!self.health)
917                 self.health = g_pickup_healthlarge;
918         StartItem ("models/items/g_h50.md3", "misc/mediumhealth.wav", g_pickup_respawntime_medium, "50 Health", IT_25HP, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_MID);
919 }
920
921 void spawnfunc_item_health_mega (void) {
922         if(!cvar("g_powerup_superhealth"))
923                 return;
924
925         if(g_arena && !cvar("g_arena_powerups"))
926                 return;
927
928         if(g_minstagib) {
929                 minstagib_items(IT_NAILS);
930         } else {
931                 if(!self.max_health)
932                         self.max_health = g_pickup_healthmega_max;
933                 if(!self.health)
934                         self.health = g_pickup_healthmega;
935                 StartItem ("models/items/g_h100.md3", "misc/megahealth.wav", g_pickup_respawntime_long, "100 Health", IT_HEALTH, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_HIGH);
936         }
937 }
938
939 // support old misnamed entities
940 void spawnfunc_item_armor1() { spawnfunc_item_armor_small(); }  // FIXME: in Quake this is green armor, in Nexuiz maps it is an armor shard
941 void spawnfunc_item_armor25() { spawnfunc_item_armor_large(); }
942 void spawnfunc_item_health1() { spawnfunc_item_health_small(); }
943 void spawnfunc_item_health25() { spawnfunc_item_health_medium(); }
944 void spawnfunc_item_health100() { spawnfunc_item_health_mega(); }
945
946 void spawnfunc_item_strength (void) {
947         if(!cvar("g_powerup_strength"))
948                 return;
949
950         if(g_arena && !cvar("g_arena_powerups"))
951                 return;
952
953         if(g_minstagib) {
954                 minstagib_items(IT_STRENGTH);
955         } else {
956                 precache_sound("weapons/strength_fire.wav");
957                 self.strength_finished = 30;
958                 self.effects = EF_ADDITIVE;
959                 StartItem ("models/items/g_strength.md3", "misc/powerup.wav", g_pickup_respawntime_powerup, "Strength Powerup", IT_STRENGTH, 0, FL_POWERUP, generic_pickupevalfunc, 100000);
960         }
961 }
962
963 void spawnfunc_item_invincible (void) {
964         if(!cvar("g_powerup_shield"))
965                 return;
966
967         if(g_arena && !cvar("g_arena_powerups"))
968                 return;
969
970         if(g_minstagib) {
971                 minstagib_items(IT_INVINCIBLE);
972         } else {
973                 self.invincible_finished = 30;
974                 self.effects = EF_ADDITIVE;
975                 StartItem ("models/items/g_invincible.md3", "misc/powerup_shield.wav", g_pickup_respawntime_powerup, "Invulnerability", IT_INVINCIBLE, 0, FL_POWERUP, generic_pickupevalfunc, 100000);
976         }
977 }
978
979 void spawnfunc_item_minst_cells (void) {
980         if (g_minstagib)
981         {
982                 minst_no_auto_cells = 1;
983                 minstagib_items(IT_CELLS);
984         }
985         else
986                 remove(self);
987 }
988
989 // compatibility:
990 void spawnfunc_item_quad (void) {self.classname = "item_strength";spawnfunc_item_strength();}
991
992 float target_item_func_set(float a, float b)
993 {
994         if(b == 0)
995                 return a;
996         else if(b < 0)
997                 return 0;
998         else
999                 return b;
1000 }
1001
1002 float target_item_func_min(float a, float b)
1003 {
1004         if(b == 0)
1005                 return a;
1006         else if(b < 0)
1007                 return 0;
1008         else
1009                 return min(a, b);
1010 }
1011
1012 float target_item_func_max(float a, float b)
1013 {
1014         return max(a, b);
1015 }
1016
1017 float target_item_func_bitset(float a, float b)
1018 {
1019         return b;
1020 }
1021
1022 float target_item_func_and(float a, float b)
1023 {
1024         return a & b;
1025 }
1026
1027 float target_item_func_itembitset(float a, float b)
1028 {
1029         return (a - (a & (IT_PICKUPMASK | IT_STRENGTH | IT_INVINCIBLE))) | b;
1030 }
1031
1032 float target_item_func_itemand(float a, float b)
1033 {
1034         return (a - (a & (IT_PICKUPMASK | IT_STRENGTH | IT_INVINCIBLE))) | (a & b);
1035 }
1036
1037 float target_item_func_or(float a, float b)
1038 {
1039         return a | b;
1040 }
1041
1042 float target_item_func_andnot(float a, float b)
1043 {
1044         return a - (a & b);
1045 }
1046
1047 float target_item_changed;
1048 void target_item_change(float binary, .float field, float(float a, float b) func, string sound_increase, string sound_decrease)
1049 {
1050         float n, d;
1051         n = func(activator.field, self.field);
1052
1053         if(binary)
1054         {
1055                 d = n & activator.field;
1056                 if(d != n) // bits added?
1057                         d = +1;
1058                 else if(d != activator.field) // bits removed?
1059                         d = -1;
1060                 else
1061                         d = 0;
1062         }
1063         else
1064                 d = n - activator.field;
1065
1066         if(d < 0)
1067         {
1068                 if(sound_decrease != "")
1069                         sound (activator, CHAN_AUTO, sound_decrease, VOL_BASE, ATTN_NORM);
1070                 target_item_changed = 1;
1071         }
1072         else if(d > 0)
1073         {
1074                 if(sound_increase != "")
1075                         sound (activator, CHAN_AUTO, sound_increase, VOL_BASE, ATTN_NORM);
1076                 target_item_changed = 1;
1077         }
1078         activator.field = n;
1079 }
1080
1081 void target_items_use (void)
1082 {
1083         float h0, a0;
1084
1085         if(activator.classname == "droppedweapon")
1086         {
1087                 EXACTTRIGGER_TOUCH;
1088                 remove(activator);
1089                 return;
1090         }
1091
1092         if(activator.classname != "player")
1093                 return;
1094         if(activator.deadflag != DEAD_NO)
1095                 return;
1096         EXACTTRIGGER_TOUCH;
1097
1098         entity e;
1099         for(e = world; (e = find(e, classname, "droppedweapon")); )
1100                 if(e.enemy == activator)
1101                         remove(e);
1102
1103         float _switchweapon;
1104         _switchweapon = FALSE;
1105         if (activator.autoswitch)
1106                 if (activator.switchweapon == w_getbestweapon(activator))
1107                         _switchweapon = TRUE;
1108
1109         a0 = activator.armorvalue;
1110         h0 = activator.health;
1111         target_item_changed = 0;
1112
1113         if(self.spawnflags == 0) // SET
1114         {
1115                 target_item_change(0, ammo_shells, target_item_func_set, "misc/itempickup.wav", "");
1116                 target_item_change(0, ammo_nails, target_item_func_set, "misc/itempickup.wav", "");
1117                 target_item_change(0, ammo_rockets, target_item_func_set, "misc/itempickup.wav", "");
1118                 target_item_change(0, ammo_cells, target_item_func_set, "misc/itempickup.wav", "");
1119                 target_item_change(0, ammo_fuel, target_item_func_set, "misc/itempickup.wav", "");
1120                 target_item_change(0, health, target_item_func_set, "misc/megahealth.wav", "");
1121                 target_item_change(0, armorvalue, target_item_func_set, "misc/armor25.wav", "");
1122                 target_item_change(1, items, target_item_func_itembitset, "misc/powerup.wav", "misc/poweroff.wav");
1123                 target_item_change(1, weapons, target_item_func_bitset, "weapons/weaponpickup.wav", "");
1124
1125                 if((self.items & activator.items) & IT_STRENGTH)
1126                         activator.strength_finished = time + self.strength_finished;
1127                 if((self.items & activator.items) & IT_INVINCIBLE)
1128                         activator.invincible_finished = time + self.invincible_finished;
1129         }
1130         else if(self.spawnflags == 1) // AND/MIN
1131         {
1132                 target_item_change(0, ammo_shells, target_item_func_min, "misc/itempickup.wav", "");
1133                 target_item_change(0, ammo_nails, target_item_func_min, "misc/itempickup.wav", "");
1134                 target_item_change(0, ammo_rockets, target_item_func_min, "misc/itempickup.wav", "");
1135                 target_item_change(0, ammo_cells, target_item_func_min, "misc/itempickup.wav", "");
1136                 target_item_change(0, ammo_fuel, target_item_func_min, "misc/itempickup.wav", "");
1137                 target_item_change(0, health, target_item_func_min, "misc/megahealth.wav", "");
1138                 target_item_change(0, armorvalue, target_item_func_min, "misc/armor25.wav", "");
1139                 target_item_change(1, items, target_item_func_itemand, "misc/powerup.wav", "misc/poweroff.wav");
1140                 target_item_change(1, weapons, target_item_func_and, "weapons/weaponpickup.wav", "");
1141
1142                 if((self.items & activator.items) & IT_STRENGTH)
1143                         activator.strength_finished = min(activator.strength_finished, time + self.strength_finished);
1144                 if((self.items & activator.items) & IT_INVINCIBLE)
1145                         activator.invincible_finished = min(activator.invincible_finished, time + self.invincible_finished);
1146         }
1147         else if(self.spawnflags == 2) // OR/MAX
1148         {
1149                 target_item_change(0, ammo_shells, target_item_func_max, "misc/itempickup.wav", "");
1150                 target_item_change(0, ammo_nails, target_item_func_max, "misc/itempickup.wav", "");
1151                 target_item_change(0, ammo_rockets, target_item_func_max, "misc/itempickup.wav", "");
1152                 target_item_change(0, ammo_cells, target_item_func_max, "misc/itempickup.wav", "");
1153                 target_item_change(0, ammo_fuel, target_item_func_max, "misc/itempickup.wav", "");
1154                 target_item_change(0, health, target_item_func_max, "misc/megahealth.wav", "");
1155                 target_item_change(0, armorvalue, target_item_func_max, "misc/armor25.wav", "");
1156                 target_item_change(1, items, target_item_func_or, "misc/powerup.wav", "misc/poweroff.wav");
1157                 target_item_change(1, weapons, target_item_func_or, "weapons/weaponpickup.wav", "");
1158
1159                 if((self.items & activator.items) & IT_STRENGTH)
1160                         activator.strength_finished = max(activator.strength_finished, time + self.strength_finished);
1161                 if((self.items & activator.items) & IT_INVINCIBLE)
1162                         activator.invincible_finished = max(activator.invincible_finished, time + self.invincible_finished);
1163         }
1164         else if(self.spawnflags == 4) // ANDNOT/MIN
1165         {
1166                 target_item_change(0, ammo_shells, target_item_func_min, "misc/itempickup.wav", "");
1167                 target_item_change(0, ammo_nails, target_item_func_min, "misc/itempickup.wav", "");
1168                 target_item_change(0, ammo_rockets, target_item_func_min, "misc/itempickup.wav", "");
1169                 target_item_change(0, ammo_cells, target_item_func_min, "misc/itempickup.wav", "");
1170                 target_item_change(0, ammo_fuel, target_item_func_min, "misc/itempickup.wav", "");
1171                 target_item_change(0, health, target_item_func_min, "misc/megahealth.wav", "");
1172                 target_item_change(0, armorvalue, target_item_func_min, "misc/armor25.wav", "");
1173                 target_item_change(1, items, target_item_func_andnot, "misc/powerup.wav", "misc/poweroff.wav");
1174                 target_item_change(1, weapons, target_item_func_andnot, "weapons/weaponpickup.wav", "");
1175
1176                 if((self.items & activator.items) & IT_STRENGTH)
1177                         activator.strength_finished = min(activator.strength_finished, time + self.strength_finished);
1178                 if((self.items & activator.items) & IT_INVINCIBLE)
1179                         activator.invincible_finished = min(activator.invincible_finished, time + self.invincible_finished);
1180         }
1181
1182         if not(activator.items & IT_STRENGTH)
1183                 activator.strength_finished = 0;
1184         if not(activator.items & IT_INVINCIBLE)
1185                 activator.invincible_finished = 0;
1186
1187         if(activator.health > h0)
1188                 activator.pauserothealth_finished = max(activator.pauserothealth_finished, time + cvar("g_balance_pause_health_rot"));
1189         else if(activator.health < h0)
1190                 activator.pauseregen_finished = max(activator.pauseregen_finished, time + cvar("g_balance_pause_health_regen"));
1191
1192         if(activator.armorvalue > a0)
1193                 activator.pauserotarmor_finished = max(activator.pauserothealth_finished, time + cvar("g_balance_pause_health_rot"));
1194
1195         if not(activator.weapons & W_WeaponBit(activator.switchweapon))
1196                 _switchweapon = TRUE;
1197         if(_switchweapon)
1198                 W_SwitchWeapon_Force(activator, w_getbestweapon(activator));
1199
1200         if(target_item_changed)
1201                 centerprint(activator, self.message);
1202 }
1203
1204 void spawnfunc_target_items (void)
1205 {
1206         float n, i, j;
1207         entity e;
1208         self.use = target_items_use;
1209         if(!self.strength_finished)
1210                 self.strength_finished = cvar("g_balance_powerup_strength_time");
1211         if(!self.invincible_finished)
1212                 self.invincible_finished = cvar("g_balance_powerup_invincible_time");
1213
1214         precache_sound("misc/itempickup.wav");
1215         precache_sound("misc/itempickup.wav");
1216         precache_sound("misc/itempickup.wav");
1217         precache_sound("misc/itempickup.wav");
1218         precache_sound("misc/megahealth.wav");
1219         precache_sound("misc/armor25.wav");
1220         precache_sound("misc/powerup.wav");
1221         precache_sound("misc/poweroff.wav");
1222         precache_sound("weapons/weaponpickup.wav");
1223
1224         n = tokenize_console(self.netname);
1225         for(i = 0; i < n; ++i)
1226         {
1227                 if(argv(i) == "unlimited_ammo")         self.items |= IT_UNLIMITED_AMMO;
1228                 if(argv(i) == "unlimited_weapon_ammo")  self.items |= IT_UNLIMITED_WEAPON_AMMO;
1229                 if(argv(i) == "unlimited_superweapons") self.items |= IT_UNLIMITED_SUPERWEAPONS;
1230                 if(argv(i) == "strength")               self.items |= IT_STRENGTH;
1231                 if(argv(i) == "invincible")             self.items |= IT_INVINCIBLE;
1232                 if(argv(i) == "jetpack")                self.items |= IT_JETPACK;
1233                 if(argv(i) == "fuel_regen")             self.items |= IT_FUEL_REGEN;
1234                 for(j = WEP_FIRST; j <= WEP_LAST; ++j)
1235                 {
1236                         e = get_weaponinfo(j);
1237                         if(argv(i) == e.netname)
1238                         {
1239                                 self.weapons |= e.weapons;
1240                                 if(self.spawnflags == 0 || self.spawnflags == 2)
1241                                         weapon_action(e.weapon, WR_PRECACHE);
1242                         }
1243                 }
1244         }
1245 }
1246
1247 void spawnfunc_item_fuel(void)
1248 {
1249         if(!self.ammo_fuel)
1250                 self.ammo_fuel = g_pickup_fuel;
1251         StartItem ("models/items/g_fuel.md3", "misc/itempickup.wav", g_pickup_respawntime_ammo, "Fuel", IT_FUEL, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_LOW);
1252 }
1253
1254 void spawnfunc_item_fuel_regen(void)
1255 {
1256         StartItem ("models/items/g_fuelregen.md3", "misc/itempickup.wav", g_pickup_respawntime_powerup, "Fuel regenerator", IT_FUEL_REGEN, 0, FL_POWERUP, commodity_pickupevalfunc, BOT_PICKUP_RATING_LOW);
1257 }
1258
1259 void spawnfunc_item_jetpack(void)
1260 {
1261         if(g_grappling_hook)
1262                 return; // sorry, but these two can't coexist (same button)
1263         if(!self.ammo_fuel)
1264                 self.ammo_fuel = g_pickup_fuel_jetpack;
1265         StartItem ("models/items/g_jetpack.md3", "misc/itempickup.wav", g_pickup_respawntime_powerup, "Jet pack", IT_JETPACK, 0, FL_POWERUP, commodity_pickupevalfunc, BOT_PICKUP_RATING_LOW);
1266 }