JBMod / jbmod

Official bug tracker and request tracker for JBMod
https://www.jbmod.com/
14 stars 1 forks source link

[Bind] Add some precaching functions #24

Open Imakesoftware2 opened 1 year ago

Imakesoftware2 commented 1 year ago

https://www.sourcemod.net/new-api/halflife/PrecacheModel https://www.sourcemod.net/new-api/halflife/PrecacheSound

Sourcemod Example

public void OnPluginStart()
{
    PrecacheModel("models/alyx.mdl", true);
    PrecacheSound("vo/npc/male01/hi01.wav", true);
    PrecacheSound("vo/npc/male01/ow01.wav", true);
}