Garry's Mod

Garry's Mod

137 ratings
(Homicide,Sandbox)Whiskas
   
Award
Favorite
Favorited
Unfavorite
Content Type: Addon
Addon Type: Weapon
Addon Tags: Roleplay, Scenic
File Size
Posted
Updated
4.257 MB
24 Jul, 2019 @ 4:16am
29 Jan, 2024 @ 2:30am
6 Change Notes ( view )

Subscribe to download
(Homicide,Sandbox)Whiskas

Description
Weapon class name: "wep_zac_hmcd_whiskas"
Weapon class name Sandbox: "weapon_whiskas"

Stew 'Whiskas' with salmon

Composition:

Meat and offal, fish (including salmon at least 4%), cereals, taurine, vitamins, minerals.

Store at a temperature of +4 to +35 C and a relative humidity of not more than 75%.

If you are the owner of the server in Homicide mode, then follow the instructions below to properly configure your server to work with this object.(Sorry for my English)

In the beginning, go to the path Homicide\gamemodes\homicide\gamemode and find the file "shared.lua".
Open this file in Notepad++ or other editing programs.
Now find these lines:

HMCD_AllowedEntities={

Well now, add these lines:
,"wep_zac_hmcd_whiskas","ent_zac_hmcd_whiskas"
Note THERE is always NEED a COMMA BEFORE THESE LINES.
That is, it should look like this:

HMCD_AllowedEntities={
"logic_","phys_","gmod_","manipulate_","predicted_","physics_",
"player_","reserved_","ai_","info_","hint","npc_zombie_torso",
"npc_fastzombie_torso","prop_physics","prop_physics_multiplayer",
"prop_dynamic","prop_ragdoll","worldspawn","soundent","prop_static",
"func_","beam","spotlight_","ambient_","scene_","npc_heli_",
"env_","trigger_","sky_","bodyque","move_","keyframe_","shadow_",
"water_","network","light","point_","_firesmoke","raggib","prop_door",
"prop_door_rotating","ally_","script_","math_","prop_scalable","aiscripted_",
"path_","filter_","cycler","relationship","color_","scripted_","goal_",
"npc_event","npc_template","gib","material_","vort_","entityflame","npc_furniture",
"sound","npc_enemyfinder","lua_run","fish","momentary_","game_",
"infodecal","entity_","wep_zac_hmcd_whiskas","ent_zac_hmcd_whiskas"
}

Well now find this file "sv_loot.lua"


Great, now find this line:

local LootTable={

See in these lines the chance of creating an item goes in descending order.
Now we need to insert this line correctly {"ent_zac_hmcd_whiskas",.5}, that is, it should look like this :

local LootTable={
{"ent_jack_hmcd_fooddrink",27},
{"ent_jack_hmcd_fooddrinkbig",17},
{"ent_jack_hmcd_bandage",8},
{"ent_jack_hmcd_pocketknife",7},
{"ent_jack_hmcd_flashlight",7},
{"ent_jack_hmcd_painpills",6},
{"ent_jack_hmcd_ducttape",6},
{"ent_jack_hmcd_baseballbat",5},
{"ent_jack_hmcd_axe",5},
{"ent_jack_hmcd_bandagebig",4},
{"ent_jack_hmcd_hatchet",4},
{"ent_jack_hmcd_phone",4},
{"ent_jack_hmcd_hammer",4},
{"ent_jack_hmcd_ammo",2.5},
{"ent_zac_hmcd_whiskas",.5},
{"ent_jack_hmcd_smallpistol",.5}
}
Great, now find this line:

local SHTF_LootTable={

See here as well as in the first example everything goes in descending order of chance.
Now place this line {"ent_zac_hmcd_whiskas",.5}, in the right place, that is:

local SHTF_LootTable={
{"ent_jack_hmcd_fooddrink",12.5},
{"ent_jack_hmcd_fooddrinkbig",12.5},
{"ent_jack_hmcd_painpills",8},
{"ent_jack_hmcd_walkietalkie",8},
{"ent_jack_hmcd_bandage",7},
{"ent_jack_hmcd_ducttape",6},
{"ent_jack_hmcd_hammer",6},
{"ent_jack_hmcd_flashlight",4},
{"ent_jack_hmcd_medkit",4},
{"ent_jack_hmcd_baseballbat",4},
{"ent_jack_hmcd_pocketknife",4},
{"ent_jack_hmcd_revolver",4},
{"ent_jack_hmcd_grapl",4},
{"ent_zac_hmcd_heroin",3},
{"ent_jack_hmcd_bandagebig",3},
{"ent_jack_hmcd_ammo",3},
{"ent_jack_hmcd_bow",2},
{"ent_jack_hmcd_pistol",2},
{"ent_jack_hmcd_shotgun",1},
{"ent_jack_hmcd_rifle",1},
{"ent_jack_hmcd_softarmor",1},
{"ent_jack_hmcd_axe",1},
{"ent_jack_hmcd_hatchet",1},
{"ent_jack_hmcd_helmet",1},
{"ent_jack_hmcd_molotov",.5},
{"ent_jack_hmcd_pipebomb",.5},
{"ent_jack_hmcd_hardarmor",.5},
{"ent_jack_hmcd_assaultrifle",.5},
{"ent_zac_hmcd_whiskas",.5},
{"ent_jack_hmcd_suppressedrifle",.5}
}
Now we need to find this line:

local SHTF_TraitorLootTable={

Note in these lines the chance of creating an item goes in ascending order!.
We need to put this line {"ent_zac_hmcd_whiskas",.5}, correctly that is so:

local SHTF_TraitorLootTable={
{"ent_zac_hmcd_whiskas",.5},
{"ent_jack_hmcd_flashlight",.5},
{"ent_jack_hmcd_walkietalkie",.5},
{"ent_jack_hmcd_fooddrink",.25},
{"ent_jack_hmcd_fooddrinkbig",.25},
{"ent_jack_hmcd_baseballbat",.5},
{"ent_jack_hmcd_ducttape",.5},
{"ent_jack_hmcd_hammer",.5},
{"ent_jack_hmcd_pocketknife",1},
{"ent_jack_hmcd_bandage",1},
{"ent_jack_hmcd_bandagebig",1},
{"ent_jack_hmcd_revolver",3},
{"ent_jack_hmcd_painpills",3},
{"ent_jack_hmcd_molotov",3},
{"ent_jack_hmcd_suppressedrifle",3},
{"ent_jack_hmcd_grapl",4},
{"ent_jack_hmcd_medkit",4},
{"ent_jack_hmcd_pistol",4},
{"ent_jack_hmcd_softarmor",4},
{"ent_jack_hmcd_helmet",4},
{"ent_jack_hmcd_shotgun",4},
{"ent_jack_hmcd_hatchet",4},
{"ent_jack_hmcd_hardarmor",4},
{"ent_jack_hmcd_axe",4},
{"ent_jack_hmcd_rifle",4},
{"ent_jack_hmcd_bow",4},
{"ent_jack_hmcd_assaultrifle",4},
{"ent_jack_hmcd_pipebomb",4},
{"ent_jack_hmcd_ammo",30}
}


CONGRATULATIONS, THE ADDON IS READY TO WORK.
15 Comments
λλ_Sayfutdinov_00 20 Aug, 2024 @ 2:02am 
<3<3<3<3
d3mith 26 May, 2023 @ 8:34pm 
too many russian
xlebio 10 Mar, 2022 @ 9:53am 
почему в хомисайде вискас левитирует, а тут есть рука?
Alekzomer 30 Jan, 2020 @ 10:18am 
саблезубый блядокрыл
caffeine overdose 2 Nov, 2019 @ 8:43am 
Вискас хуита не горит переходите на кошачью мяту
The_Gaming_Loyalist 19 Sep, 2019 @ 4:19am 
the only food my cat will eat
OlegHS 24 Aug, 2019 @ 5:09am 
Саблесубый блядокрыл!!! ЭТО ЛУЧШИЙ АДДОН ВСЕМ СОВЕТУЮ А НАПЕРДЫШ ХYЙНЯ!!!
ЕНОТ!!! 27 Jul, 2019 @ 7:54am 
сука так вот кто мой вискас спиздил!
Zac90  [author] 26 Jul, 2019 @ 8:21am 
Mr. Motilek 25 Jul, 2019 @ 9:14am 
Ты, блять ебудаманаво растишесткий гавна лимпубрсокий бегмурдский немецке-английско осколочно гранатэ, гений