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