- Initiateur de la discussion
- Banni
Razzer95
Geek suprême
- Messages
- 689
- Score réaction
- 158
- Points
- 150
Bonjour Quelqu'un Connait Un Script qui permet que quand un NPC Meurt il drop une entitée svp ??
Je ne sais pas comment il marche , Moi je veux simplement que pour mes chasseurs quand ils tuent les npc (animaux) une entité que je choisis tombexRaiiKen à dit:Je sais pas si cela te conviendrais : https://facepunch.com/showthread.php?t=868641
if not SERVER then return end
local WeaponList = { "weapon_pistol", "weapon_smg1", "weapon_crowbar"
}
hook.Add("OnNPCKilled", "DropWeaponOnNPCKilled", function(npc, killer, weapon) local weapon = ents.Create(table.Random(WeaponList)) --randomly choose a weapon entity from WeaponList weapon:SetPos(npc:LocalToWorld(npc:OBBCenter())) -- Set the position to the center of the NPC weapon:Spawn()
end)
Je le met où ce script ??Feytone à dit:ça peut marcher :
Donc dans le Weapon List tu mets tout ce qui pourrait tomber. Pour un pourcentage de chance que rien ne tombe, tu peux simplement rajouter un " " vide et plusieurs pour moins de chances encore.Code:if not SERVER then return end local WeaponList = { "weapon_pistol", "weapon_smg1", "weapon_crowbar" } hook.Add("OnNPCKilled", "DropWeaponOnNPCKilled", function(npc, killer, weapon) local weapon = ents.Create(table.Random(WeaponList)) --randomly choose a weapon entity from WeaponList weapon:SetPos(npc:LocalToWorld(npc:OBBCenter())) -- Set the position to the center of the NPC weapon:Spawn() end)
c'étais dans le site que j'ai envoyé mais faut cherché donc....Feytone à dit:ça peut marcher :
Donc dans le Weapon List tu mets tout ce qui pourrait tomber. Pour un pourcentage de chance que rien ne tombe, tu peux simplement rajouter un " " vide et plusieurs pour moins de chances encore.Code:if not SERVER then return end local WeaponList = { "weapon_pistol", "weapon_smg1", "weapon_crowbar" } hook.Add("OnNPCKilled", "DropWeaponOnNPCKilled", function(npc, killer, weapon) local weapon = ents.Create(table.Random(WeaponList)) --randomly choose a weapon entity from WeaponList weapon:SetPos(npc:LocalToWorld(npc:OBBCenter())) -- Set the position to the center of the NPC weapon:Spawn() end)
nopxRaiiKen à dit:c'étais dans le site que j'ai envoyé mais faut cherché donc....
Voilà c'est bien pourquoi je le remets là ... Il faut savoir cliquer certains n'en prennent pas la peine.xRaiiKen à dit:c'étais dans le site que j'ai envoyé mais faut cherché donc....
Je Ne sait pas où mettre ton code ..?Feytone à dit:Voilà c'est bien pourquoi je le remets là ... Il faut savoir cliquer certains n'en prennent pas la peine.