- Initiateur de la discussion
Naptio
Geek
- Messages
- 61
- Score réaction
- 2
- Points
- 95
J'ai un petit problème :
function ENT:Use( activator )
local health = activator:Health()
activator:SetHealth( math.Clamp( ( health or 100 ) + 15, 0, 100 ) )
activator:EmitSound( self.foodSound, 50, 100 )
self:Remove() end
Comment faire pour que quand on mange ( food mod ) sa ne nous monte pas le HP mais sa ne l'es descend pas ? je fait sa ?
function ENT:Use( activator )
local health = activator:Health()
activator:SetHealth( math.Clamp( ( health ) )
activator:EmitSound( self.foodSound, 50, 100 )
self:Remove() end
function ENT:Use( activator )
local health = activator:Health()
activator:SetHealth( math.Clamp( ( health or 100 ) + 15, 0, 100 ) )
activator:EmitSound( self.foodSound, 50, 100 )
self:Remove() end
Comment faire pour que quand on mange ( food mod ) sa ne nous monte pas le HP mais sa ne l'es descend pas ? je fait sa ?
function ENT:Use( activator )
local health = activator:Health()
activator:SetHealth( math.Clamp( ( health ) )
activator:EmitSound( self.foodSound, 50, 100 )
self:Remove() end