X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fcommon%2Fmutators%2Fmutator%2Foverkill%2Fsv_overkill.qc;h=fab0b6ff969008269df0d6b595cf882ce5677ef9;hp=5eef8f2e37b4b49c96bce413c564cf2ebcbf9b28;hb=45881fb1af30037591879eb93c5eea370255921c;hpb=65493c17d47c0d5ece5e28a999a0162c5b070acb diff --git a/qcsrc/common/mutators/mutator/overkill/sv_overkill.qc b/qcsrc/common/mutators/mutator/overkill/sv_overkill.qc index 5eef8f2e3..fab0b6ff9 100644 --- a/qcsrc/common/mutators/mutator/overkill/sv_overkill.qc +++ b/qcsrc/common/mutators/mutator/overkill/sv_overkill.qc @@ -167,6 +167,11 @@ MUTATOR_HOOKFUNCTION(ok, PlayerPreThink) PHYS_INPUT_BUTTON_ATCK2(player) = false; } +MUTATOR_HOOKFUNCTION(ok, ForbidRandomStartWeapons) +{ + return true; +} + MUTATOR_HOOKFUNCTION(ok, PlayerWeaponSelect) { entity player = M_ARGV(0, entity); @@ -189,51 +194,6 @@ MUTATOR_HOOKFUNCTION(ok, PlayerWeaponSelect) } } -void self_spawnfunc_weapon_hmg(entity this) { spawnfunc_weapon_hmg(this); } -void self_spawnfunc_weapon_rpc(entity this) { spawnfunc_weapon_rpc(this); } - -MUTATOR_HOOKFUNCTION(ok, OnEntityPreSpawn) -{ - entity ent = M_ARGV(0, entity); - - if(autocvar_g_powerups) - if(autocvar_g_overkill_powerups_replace) - { - if(ent.classname == "item_strength") - { - entity wep = new(weapon_hmg); - setorigin(wep, ent.origin); - setmodel(wep, MDL_OK_HMG); - wep.ok_item = true; - wep.noalign = Item_ShouldKeepPosition(ent); - wep.cnt = ent.cnt; - wep.team = ent.team; - wep.respawntime = g_pickup_respawntime_superweapon; - wep.pickup_anyway = true; - wep.spawnfunc_checked = true; - setthink(wep, self_spawnfunc_weapon_hmg); - wep.nextthink = time + 0.1; - return true; - } - else if(ent.classname == "item_shield") - { - entity wep = new(weapon_rpc); - setorigin(wep, ent.origin); - setmodel(wep, MDL_OK_RPC); - wep.ok_item = true; - wep.noalign = Item_ShouldKeepPosition(ent); - wep.cnt = ent.cnt; - wep.team = ent.team; - wep.respawntime = g_pickup_respawntime_superweapon; - wep.pickup_anyway = true; - wep.spawnfunc_checked = true; - setthink(wep, self_spawnfunc_weapon_rpc); - wep.nextthink = time + 0.1; - return true; - } - } -} - bool ok_HandleItemWaypoints(entity e) { if(!autocvar_g_overkill_itemwaypoints) @@ -266,9 +226,49 @@ MUTATOR_HOOKFUNCTION(ok, FilterItem) { entity item = M_ARGV(0, entity); - if(item.ok_item) + if (item.ok_item) + { return false; - + } + switch(item.itemdef) + { + case ITEM_HealthMega: return autocvar_g_overkill_filter_healthmega; + case ITEM_ArmorMedium: return autocvar_g_overkill_filter_armormedium; + case ITEM_ArmorBig: return autocvar_g_overkill_filter_armorbig; + case ITEM_ArmorMega: return autocvar_g_overkill_filter_armormega; + } + if (!autocvar_g_powerups || !autocvar_g_overkill_powerups_replace) + { + return true; + } + if (item.classname == "item_strength") + { + entity wep = new(weapon_hmg); + setorigin(wep, item.origin); + wep.ok_item = true; + wep.noalign = Item_ShouldKeepPosition(item); + wep.cnt = item.cnt; + wep.team = item.team; + wep.respawntime = g_pickup_respawntime_superweapon; + wep.pickup_anyway = true; + wep.spawnfunc_checked = true; + Item_Initialize(wep, "weapon_hmg"); + return true; + } + else if (item.classname == "item_shield") + { + entity wep = new(weapon_rpc); + setorigin(wep, item.origin); + wep.ok_item = true; + wep.noalign = Item_ShouldKeepPosition(item); + wep.cnt = item.cnt; + wep.team = item.team; + wep.respawntime = g_pickup_respawntime_superweapon; + wep.pickup_anyway = true; + wep.spawnfunc_checked = true; + Item_Initialize(wep, "weapon_rpc"); + return true; + } return true; }