My Healpad isn´t working.
Moderator: InsideQC Admins
3 posts
• Page 1 of 1
My Healpad isn´t working.
Hi here is my code
I added the func_healpad on my map if i go on it, it doesn´t heal me
- Code: Select all
void() func_healpad_touch =
{
if (other.classname != "player")
return;
self.health = 100;
};
void() func_healpad =
{
self.movetype = MOVETYPE_PUSH;
self.solid = SOLID_BSP;
setsize (self, self.mins , self.maxs);
setorigin (self, self.origin);
setmodel (self, self.model);
self.classname = "func_healpad";
self.touch = func_healpad_touch;
};
I added the func_healpad on my map if i go on it, it doesn´t heal me
- Quake123
- Posts: 3
- Joined: Fri Aug 29, 2008 10:13 pm
3 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 1 guest