set g_vore 1 "enables the vore system, you want this on!"\r
set g_vore_digestion 1 "enables digestion system, you want this on!"\r
set g_vore_kick 1 "enables stomach kick system, you want this on!"\r
+set g_vore_spawnshield 0 "when disabled, players with spawn shields cannot be swallowed"\r
set g_vore_reversescoring 0 "reverses vore scoring, and gives digested prey a frag rather than the predator (offer yourself gameplay), does not affect suicides, weapon kills and team kills"\r
set g_vore_teamvore 1 "allow players to swallow their team mates"\r
set g_vore_biggergut 1 "when enabled, a player can't swallow someone with more players in their stomach than them"\r
return FALSE;\r
}\r
\r
+ if(!cvar("g_vore_spawnshield"))\r
+ if(prey.spawnshieldtime > time)\r
+ {\r
+ if(time > self.complain_vore && self.BUTTON_ATCK)\r
+ {\r
+ play2(self, "misc/forbidden.wav");\r
+ sprint(self, "You cannot swallow someone protected by the spawn shield\n");\r
+ self.complain_vore = time + complain_delay_time;\r
+ }\r
+ return FALSE;\r
+ }\r
+\r
return TRUE;\r
}\r
return FALSE;\r