Skip to content

Commit d8c6a94

Browse files
committed
v2.1.4 Release
This is the release for 2.1.4! Changelog from beta branch: Added: Natives: - Cel_AddToBlacklist - Cel_CheckBlacklistDB - Cel_RemoveFromBlacklist - Cel_SpawnLadder - Cel_SpawnLight - Cel_GetLandOwnerFromEntity - Cel_IsLandCreated - Cel_CopyProp - Cel_DropEntityToFloor - Cel_GetFadeColor - Cel_IsBreakable - Cel_IsLocked - Cel_LockEntity - Cel_PasteProp - Cel_SetBreakable - Cel_SetRainbow - Cel_TeleportInfrontOfClient - Cel_ReplyToCommandEntity - Cel_GetAmmoType - Cel_GetAmmoTypeFromName - Cel_GetAmmoTypeName - Cel_GetAmmoCrateType - Cel_GetAmmoCrateTypeFromName - Cel_GetAmmoCrateTypeName - Cel_GetChargerType - Cel_GetChargerTypeFromName - Cel_GetChargerTypeName - Cel_GetTriggerType - Cel_GetWeaponType - Cel_GetWeaponTypeFromName - Cel_GetWeaponTypeName - Cel_IsTrigger - Cel_SpawnAmmoBit - Cel_SpawnAmmoCrate - Cel_SpawnButton - Cel_SpawnCharger - Cel_SpawnWeaponBit - Cel_TriggerEntity Commands: - v_blacklist - v_ladder - v_light - v_landcoop - v_landshop - v_autobuild - +copy/-copy - +move/-move - v_copy - v_drop - v_fadecolor - v_flip - v_god - v_lock - v_paste - v_r - v_replace - v_roll - v_skin - v_stack - v_stackinfo - v_unlock - v_ammo - v_ammocrate - v_button - v_charger - v_link - v_wep - Added a link system to trigger entities from long distances controlled by buttons or triggers. - Created "bits" for ammo, ammocrates, chargers, and weapons. Changed: - Changed command tag from sm_ to v_ and added code to make it work. - Made v_delall it's own command. - Added spawn options (drop, unfrozen, nogod). - Fixed props spawning in the ground. - Rewrote prop saving to support entities not fully in the land to avoid missing props.
1 parent 61a41db commit d8c6a94

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+14098
-3298
lines changed

.gitignore

Lines changed: 86 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
*.bpproj
33
*.cache
44
*.dat
5-
*.dll
65
*.exe
76
*.sq3
87
*.vdf
@@ -61,8 +60,6 @@ addons/sourcemod/scripting/funcommands/beacon.sp
6160
addons/sourcemod/scripting/funcommands/blind.sp
6261
addons/sourcemod/scripting/funcommands/drug.sp
6362
addons/sourcemod/scripting/funcommands/fire.sp
64-
addons/sourcemod/scripting/funcommands/gravity.sp
65-
addons/sourcemod/scripting/funcommands/noclip.sp
6663
addons/sourcemod/scripting/funcommands/timebomb.sp
6764
addons/sourcemod/scripting/funvotes
6865
addons/sourcemod/scripting/funvotes.sp
@@ -241,3 +238,89 @@ addons/sourcemod/plugins/swag.smx
241238
cfg/mapcycle.txt
242239
addons/sourcemod/plugins/updater.smx
243240
addons/sourcemod/scripting/include/updater.inc
241+
addons/sourcemod/extensions/bintools.ext.dll
242+
addons/sourcemod/extensions/clientprefs.ext.dll
243+
addons/sourcemod/extensions/dbi.mysql.ext.dll
244+
addons/sourcemod/extensions/dbi.pgsql.ext.dll
245+
addons/sourcemod/extensions/dbi.sqlite.ext.dll
246+
addons/sourcemod/extensions/dhooks.ext.dll
247+
addons/sourcemod/extensions/game.cstrike.ext.2.csgo.dll
248+
addons/sourcemod/extensions/game.cstrike.ext.2.css.dll
249+
addons/sourcemod/extensions/game.tf2.ext.2.tf2.dll
250+
addons/sourcemod/extensions/geoip.ext.dll
251+
addons/sourcemod/extensions/regex.ext.dll
252+
addons/sourcemod/extensions/sdkhooks.ext.2.bgt.dll
253+
addons/sourcemod/extensions/sdkhooks.ext.2.blade.dll
254+
addons/sourcemod/extensions/sdkhooks.ext.2.bms.dll
255+
addons/sourcemod/extensions/sdkhooks.ext.2.contagion.dll
256+
addons/sourcemod/extensions/sdkhooks.ext.2.csgo.dll
257+
addons/sourcemod/extensions/sdkhooks.ext.2.css.dll
258+
addons/sourcemod/extensions/sdkhooks.ext.2.darkm.dll
259+
addons/sourcemod/extensions/sdkhooks.ext.2.dods.dll
260+
addons/sourcemod/extensions/sdkhooks.ext.2.doi.dll
261+
addons/sourcemod/extensions/sdkhooks.ext.2.ep1.dll
262+
addons/sourcemod/extensions/sdkhooks.ext.2.ep2.dll
263+
addons/sourcemod/extensions/sdkhooks.ext.2.eye.dll
264+
addons/sourcemod/extensions/sdkhooks.ext.2.hl2dm.dll
265+
addons/sourcemod/extensions/sdkhooks.ext.2.insurgency.dll
266+
addons/sourcemod/extensions/sdkhooks.ext.2.l4d.dll
267+
addons/sourcemod/extensions/sdkhooks.ext.2.l4d2.dll
268+
addons/sourcemod/extensions/sdkhooks.ext.2.nd.dll
269+
addons/sourcemod/extensions/sdkhooks.ext.2.pvkii.dll
270+
addons/sourcemod/extensions/sdkhooks.ext.2.sdk2013.dll
271+
addons/sourcemod/extensions/sdkhooks.ext.2.swarm.dll
272+
addons/sourcemod/extensions/sdkhooks.ext.2.tf2.dll
273+
addons/sourcemod/extensions/sdktools.ext.2.bgt.dll
274+
addons/sourcemod/extensions/sdktools.ext.2.blade.dll
275+
addons/sourcemod/extensions/sdktools.ext.2.bms.dll
276+
addons/sourcemod/extensions/sdktools.ext.2.contagion.dll
277+
addons/sourcemod/extensions/sdktools.ext.2.csgo.dll
278+
addons/sourcemod/extensions/sdktools.ext.2.css.dll
279+
addons/sourcemod/extensions/sdktools.ext.2.darkm.dll
280+
addons/sourcemod/extensions/sdktools.ext.2.dods.dll
281+
addons/sourcemod/extensions/sdktools.ext.2.doi.dll
282+
addons/sourcemod/extensions/sdktools.ext.2.ep1.dll
283+
addons/sourcemod/extensions/sdktools.ext.2.ep2.dll
284+
addons/sourcemod/extensions/sdktools.ext.2.eye.dll
285+
addons/sourcemod/extensions/sdktools.ext.2.hl2dm.dll
286+
addons/sourcemod/extensions/sdktools.ext.2.insurgency.dll
287+
addons/sourcemod/extensions/sdktools.ext.2.l4d.dll
288+
addons/sourcemod/extensions/sdktools.ext.2.l4d2.dll
289+
addons/sourcemod/extensions/sdktools.ext.2.nd.dll
290+
addons/sourcemod/extensions/sdktools.ext.2.pvkii.dll
291+
addons/sourcemod/extensions/sdktools.ext.2.sdk2013.dll
292+
addons/sourcemod/extensions/sdktools.ext.2.swarm.dll
293+
addons/sourcemod/extensions/sdktools.ext.2.tf2.dll
294+
addons/sourcemod/extensions/topmenus.ext.dll
295+
addons/sourcemod/extensions/updater.ext.dll
296+
addons/sourcemod/extensions/webternet.ext.dll
297+
addons/sourcemod/extensions/x64/bintools.ext.dll
298+
addons/sourcemod/extensions/x64/clientprefs.ext.dll
299+
addons/sourcemod/extensions/x64/dbi.mysql.ext.dll
300+
addons/sourcemod/extensions/x64/dbi.pgsql.ext.dll
301+
addons/sourcemod/extensions/x64/dbi.sqlite.ext.dll
302+
addons/sourcemod/extensions/x64/dhooks.ext.dll
303+
addons/sourcemod/extensions/x64/game.cstrike.ext.2.css.dll
304+
addons/sourcemod/extensions/x64/game.tf2.ext.2.tf2.dll
305+
addons/sourcemod/extensions/x64/geoip.ext.dll
306+
addons/sourcemod/extensions/x64/regex.ext.dll
307+
addons/sourcemod/extensions/x64/sdkhooks.ext.2.blade.dll
308+
addons/sourcemod/extensions/x64/sdkhooks.ext.2.css.dll
309+
addons/sourcemod/extensions/x64/sdkhooks.ext.2.dods.dll
310+
addons/sourcemod/extensions/x64/sdkhooks.ext.2.hl2dm.dll
311+
addons/sourcemod/extensions/x64/sdkhooks.ext.2.insurgency.dll
312+
addons/sourcemod/extensions/x64/sdkhooks.ext.2.mcv.dll
313+
addons/sourcemod/extensions/x64/sdkhooks.ext.2.tf2.dll
314+
addons/sourcemod/extensions/x64/sdktools.ext.2.blade.dll
315+
addons/sourcemod/extensions/x64/sdktools.ext.2.css.dll
316+
addons/sourcemod/extensions/x64/sdktools.ext.2.hl2dm.dll
317+
addons/sourcemod/extensions/x64/sdktools.ext.2.insurgency.dll
318+
addons/sourcemod/extensions/x64/sdktools.ext.2.mcv.dll
319+
addons/sourcemod/extensions/x64/sdktools.ext.2.tf2.dll
320+
addons/sourcemod/extensions/x64/topmenus.ext.dll
321+
addons/sourcemod/extensions/x64/updater.ext.dll
322+
addons/sourcemod/extensions/x64/webternet.ext.dll
323+
addons/sourcemod/extensions/x64/sdktools.ext.2.dods.dll
324+
/bin
325+
addons/sourcemod/scripting/include/ink_build.inc
326+
addons/sourcemod/scripting/ink_build.sp

addons/sourcemod/celmod_update.upd

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,20 @@
44
{
55
"Version"
66
{
7-
"Latest" "2.0.0"
8-
"Previously" "1.0.1.1"
7+
"Latest" "2.1.4"
8+
"Previously" "2.1.3"
99
}
1010

11-
"Notes" "Went through and updated celmod-lands to fix missed small bugs and clean up some functions."
12-
"Notes" "Added descriptions to all the natives. Was generated with AI so may be a little messy."
13-
"Notes" "Created celmod-clientstorage to hold functions with client settings/purchases/bank storage."
14-
"Notes" "Started working on the economy aspect of CelMod."
15-
"Notes" "Added a handful of new commands."
16-
"Notes" "Hopefully fixed a bug involving coloring effects."
11+
"Notes" "Added +move, +copy, !skin, !copy and !paste."
12+
"Notes" "Update rainbow and sm_fadecolor to use HSV to RGB for a better and more consistant color."
13+
"Notes" "Added a blacklist to blacklist props without altering the prop list."
14+
"Notes" "Updated all commands from sm_ to v_."
15+
"Notes" "Accuratly scrolling through skins is now achieved by using StudioHdr."
16+
"Notes" "Started work on buttons/triggers. ALPHA"
17+
"Notes" "Added !owner, !drop, !replace, !lock and !unlock."
18+
"Notes" "v2.1.4 is now released!"
1719
}
18-
20+
1921
"Files"
2022
{
2123
"Plugin" "Path_SM/data/celmod/colors.txt"
@@ -24,20 +26,28 @@
2426
"Plugin" "Path_SM/data/celmod/spawns.txt"
2527
"Plugin" "Path_SM/plugins/funcommands.smx"
2628
"Plugin" "Path_SM/plugins/celmod.smx"
29+
"Plugin" "Path_SM/plugins/celmod-bits.smx"
2730
"Plugin" "Path_SM/plugins/celmod-buildsaving.smx"
31+
"Plugin" "Path_SM/plugins/celmod-cels.smx"
32+
"Plugin" "Path_SM/plugins/celmod-chat.smx"
2833
"Plugin" "Path_SM/plugins/celmod-clientstorage.smx"
2934
"Plugin" "Path_SM/plugins/celmod-economy.smx"
3035
"Plugin" "Path_SM/plugins/celmod-effects.smx"
3136
"Plugin" "Path_SM/plugins/celmod-entity.smx"
3237
"Plugin" "Path_SM/plugins/celmod-help.smx"
3338
"Plugin" "Path_SM/plugins/celmod-hud.smx"
3439
"Plugin" "Path_SM/plugins/celmod-land.smx"
35-
"Plugin" "Path_SM/scripting/celmod.inc"
40+
"Plugin" "Path_SM/scripting/include/celmod.inc"
41+
"Source" "Path_SM/scripting/include/updater.inc"
3642
"Plugin" "Path_SM/translations/celmod.phrases.txt"
37-
43+
"Plugin" "Path_SM/gamedata/studio_hdr.games.txt"
44+
3845
"Source" "Path_SM/scripting/funcommands.sp"
3946
"Source" "Path_SM/scripting/celmod.sp"
47+
"Source" "Path_SM/scripting/celmod-bits.sp"
4048
"Source" "Path_SM/scripting/celmod-buildsaving.sp"
49+
"Source" "Path_SM/scripting/celmod-cels.sp"
50+
"Source" "Path_SM/scripting/celmod-chat.sp"
4151
"Source" "Path_SM/scripting/celmod-clientstorage.sp"
4252
"Source" "Path_SM/scripting/celmod-economy.sp"
4353
"Source" "Path_SM/scripting/celmod-effects.sp"
@@ -48,6 +58,9 @@
4858
"Source" "Path_SM/scripting/funcommands/ice.sp"
4959
"Source" "Path_SM/scripting/include/celmod.inc"
5060
"Source" "Path_SM/scripting/include/morecolors.inc"
61+
"Source" "Path_SM/scripting/include/updater.inc"
62+
"Source" "Path_SM/scripting/include/studio_hdr.inc"
5163
"Source" "Path_SM/translations/celmod.phrases.txt"
64+
"Source" "Path_SM/gamedata/studio_hdr.games.txt"
5265
}
5366
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
"Vault"
2+
{
3+
"Blacklist"
4+
{
5+
"alyx" "blacklist"
6+
"cake" "blacklist"
7+
"delaware" "blacklist"
8+
"hoopie" "blacklist"
9+
"pineapple" "blacklist"
10+
"sbc" "blacklist"
11+
}
12+
}
Lines changed: 93 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,96 @@
1+
+copy - Client - Starts copying and moving the prop you are looking at.
2+
+move - Client - Starts moving the prop you are looking at.
3+
-copy - Client - Stops copying and moving the prop you are looking at.
4+
-move - Client - Stops moving the prop you are looking at.
15
cm_exportcolorlist - Server - Exports the color list into a text or html file in 'data/celmod/exports'.
26
cm_exportcommandlist - Server - Exports the command list into a text or html file in 'data/celmod/exports'.
37
cm_exportproplist - Server - Exports the prop list into a text or html file in 'data/celmod/exports'.
4-
sm_alpha - Client - Changes the transparency on the prop you are looking at.
5-
sm_amt - Client - Changes the transparency on the prop you are looking at.
6-
sm_axis - Client - Creates a marker to the player showing every axis.
7-
sm_balance - Client - Gets the players current balance.
8-
sm_buy - Client - Purchases the current entity you are looking at or command you specified.
9-
sm_cmds - Client - Displays the command list.
10-
sm_color - Client - Colors the prop you are looking at.
11-
sm_colorlist - Client - Displays the color list.
12-
sm_colors - Client - Displays the color list.
13-
sm_commandlist - Client - Displays the command list.
14-
sm_commands - Client - Displays the command list.
15-
sm_del - Client - Removes the prop you are looking at.
16-
sm_delete - Client - Removes the prop you are looking at.
17-
sm_door - Client - Spawns a working door cel.
18-
sm_effect - Client - Spawns a working effect cel.
19-
sm_effectlist - Client - Displays the effect list.
20-
sm_effects - Client - Displays the effect list.
21-
sm_emitter - Client - Spawns a working effect cel.
22-
sm_fadecolor - Client - Fades the prop you are looking at between two colors.
23-
sm_fly - Client - Enables/disables noclip on the player.
24-
sm_freeze - Client - Freezes the prop you are looking at.
25-
sm_freezeit - Client - Freezes the prop you are looking at.
26-
sm_internet - Client - Creates a working internet cel.
27-
sm_land - Client - Creates a building zone.
28-
sm_landdeathmatch - Client - Changes the deathmatch setting within the land.
29-
sm_landgravity - Client - Changes the gravity within the land.
30-
sm_landskin - Client - Changes the skin within the land.
31-
sm_load - Client - Loads entities from a save file.
32-
sm_mark - Client - Creates a marker to the player showing every axis.
33-
sm_marker - Client - Creates a marker to the player showing every axis.
34-
sm_nokill - Client - Enables/disables godmode on the player.
35-
sm_p - Client - Spawns a prop by name.
36-
sm_paint - Client - Colors the prop you are looking at.
37-
sm_pmove - Client - Moves the prop you are looking at on it's origin.
38-
sm_proplist - Client - Displays the prop list.
39-
sm_props - Client - Displays the prop list.
40-
sm_remove - Client - Removes the prop you are looking at.
41-
sm_renderfx - Client - Changes the RenderFX on the prop you are looking at.
42-
sm_rotate - Client - Rotates the prop you are looking at.
43-
sm_s - Client - Spawns a prop by name.
44-
sm_save - Client - Saves all server entities that are in your land.
45-
sm_sell - Client - Sells the entity you are looking at.
46-
sm_setbalance - Admin - Sets the balance of the client you are specifing.
47-
sm_setowner - Admin - Sets the owner of the prop you are looking at.
48-
sm_seturl - Client - Sets the url of the internet cel you are looking at.
49-
sm_smove - Client - Moves the prop you are looking at on it's origin.
50-
sm_solid - Client - Enables/disables solidicity on the prop you are looking at.
51-
sm_spawn - Client - Spawns a prop by name.
52-
sm_stack - Client - Stacks props on the x, y and z axis.
53-
sm_stackinfo - Client - Gets the origin difference between props for help stacking.
54-
sm_stand - Client - Resets the angles on the prop you are looking at.
55-
sm_straight - Client - Resets the angles on the prop you are looking at.
56-
sm_straighten - Client - Resets the angles on the prop you are looking at.
57-
sm_switch - Client - Switches the side the hud is on the screen.
58-
sm_unfreeze - Client - Unfreezes the prop you are looking at.
59-
sm_unfreezeit - Client - Unfreezes the prop you are looking at.
60-
sm_updatelist - Client - Displays the update list.
61-
sm_updates - Client - Displays the update list.
8+
v_alpha - Client - Changes the transparency on the prop you are looking at.
9+
v_ammo - Client - Creates a ammo bit that will give ammo when the player touches it.
10+
v_ammocrate - Client - Creates a ammo crate bit that will give ammo to the player.
11+
v_amt - Client - Changes the transparency on the prop you are looking at.
12+
v_autobuild - Admin - Stacks props on the x, y and z axis.
13+
v_axis - Client - Creates a marker to the player showing every axis.
14+
v_balance - Client - Gets the players current balance.
15+
v_blacklist - Admin - Adds/removes a prop from the spawn blacklist.
16+
v_button - Client - Spawns a button trigger bit.
17+
v_buy - Client - Purchases the current entity you are looking at or command you specified.
18+
v_charger - Client - Creates a health/suit charger bit that will give health/suit to the player.
19+
v_cmds - Client - Displays the command list.
20+
v_color - Client - Colors the prop you are looking at.
21+
v_colorlist - Client - Displays the color list.
22+
v_colors - Client - Displays the color list.
23+
v_commandlist - Client - Displays the command list.
24+
v_commands - Client - Displays the command list.
25+
v_coop - Client - Changes the mode to co-op within the land.
26+
v_copy - Client - Copies the prop you are looking at into your copy buffer.
27+
v_deathmatch - Client - Changes the mode to deathmatch within the land.
28+
v_del - Client - Removes the prop you are looking at.
29+
v_delall - Client - Removes all the entities that you own.
30+
v_delete - Client - Removes the prop you are looking at.
31+
v_deleteall - Client - Removes all the entities that you own.
32+
v_dm - Client - Changes the mode to deathmatch within the land.
33+
v_door - Client - Spawns a working door cel.
34+
v_drop - Client - Teleports the entity you are looking at to the floor.
35+
v_effect - Client - Spawns a working effect cel.
36+
v_effectlist - Client - Displays the effect list.
37+
v_effects - Client - Displays the effect list.
38+
v_emitter - Client - Spawns a working effect cel.
39+
v_fadecolor - Client - Fades the prop you are looking at between two colors.
40+
v_flip - Client - Flips the prop you are looking at.
41+
v_fly - Client - Enables/disables noclip on the player.
42+
v_freeze - Client - Freezes the prop you are looking at.
43+
v_freezeit - Client - Freezes the prop you are looking at.
44+
v_god - Client - Enables/disables breakability on the prop you are looking at.
45+
v_gravity - Client - Changes the gravity within the land.
46+
v_internet - Client - Creates a working internet cel.
47+
v_ladder - Client - Creates a working ladder cel.
48+
v_land - Client - Creates a building zone.
49+
v_landcoop - Client - Changes the mode to co-op within the land.
50+
v_landdeathmatch - Client - Changes the mode to deathmatch within the land.
51+
v_landgravity - Client - Changes the gravity within the land.
52+
v_landshop - Client - Changes the mode to shop (merchant) within the land.
53+
v_light - Client - Creates a working light cel.
54+
v_link - Client - Creates a link between a trigger bit and an entity.
55+
v_load - Client - Loads entities from a save file.
56+
v_lock - Client - Locks the cel you are looking at.
57+
v_mark - Client - Creates a marker to the player showing every axis.
58+
v_marker - Client - Creates a marker to the player showing every axis.
59+
v_nokill - Client - Enables/disables godmode on the player.
60+
v_owner - Client - Gets the owner of the entity you are looking at.
61+
v_p - Client - Spawns a prop by name.
62+
v_paint - Client - Colors the prop you are looking at.
63+
v_paste - Client - Pastes the prop in your copy buffer where you are looking at.
64+
v_pmove - Client - Moves the prop you are looking at on it's origin.
65+
v_proplist - Client - Displays the prop list.
66+
v_props - Client - Displays the prop list.
67+
v_r - Client - Rotates the prop you are looking at.
68+
v_remove - Client - Removes the prop you are looking at.
69+
v_removeall - Client - Removes all the entities that you own.
70+
v_renderfx - Client - Changes the RenderFX on the prop you are looking at.
71+
v_replace - Client - Replaces the model on the entity you are looking at.
72+
v_roll - Client - Rolls the prop you are looking at.
73+
v_rotate - Client - Flips, rotates and rolls the prop you are looking at.
74+
v_s - Client - Spawns a prop by name.
75+
v_save - Client - Saves all server entities that are in your land.
76+
v_sell - Client - Sells the entity you are looking at.
77+
v_setbalance - Admin - Sets the balance of the client you are specifing.
78+
v_setowner - Admin - Sets the owner of the prop you are looking at.
79+
v_seturl - Client - Sets the url of the internet cel you are looking at.
80+
v_shop - Client - Changes the mode to shop (merchant) within the land.
81+
v_skin - Client - Changes the skin on the prop you are looking at.
82+
v_smove - Client - Moves the prop you are looking at on it's origin.
83+
v_solid - Client - Enables/disables solidicity on the prop you are looking at.
84+
v_spawn - Client - Spawns a prop by name.
85+
v_stack - Client - Stacks one prop on the x, y and z axis.
86+
v_stackinfo - Client - Gets the origin difference between props for help stacking.
87+
v_stand - Client - Resets the angles on the prop you are looking at.
88+
v_straight - Client - Resets the angles on the prop you are looking at.
89+
v_straighten - Client - Resets the angles on the prop you are looking at.
90+
v_switch - Client - Switches the side the hud is on the screen.
91+
v_unfreeze - Client - Unfreezes the prop you are looking at.
92+
v_unfreezeit - Client - Unfreezes the prop you are looking at.
93+
v_unlock - Client - Unlocks the cel you are looking at.
94+
v_updatelist - Client - Displays the update list.
95+
v_updates - Client - Displays the update list.
96+
v_wep - Client - Creates a weapon bit that will give a weapon when the player touches it.

addons/sourcemod/data/celmod/exports/proplist_export.txt

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
airboat
2-
alyx
32
antlion
43
antlionhill
54
archgate1
@@ -650,3 +649,37 @@ wrench
650649
zombie
651650
zombielegs
652651
zombietorso
652+
wall1
653+
wall2
654+
wall3
655+
wall4
656+
wall5
657+
box1
658+
box2
659+
box3
660+
sphere1
661+
sphere2
662+
sphere3
663+
roof1
664+
roof2
665+
roof3
666+
roof4
667+
roof5
668+
hollowcontainer
669+
whitecontainer1
670+
whitecontainer1b
671+
tvscreen
672+
flatscreen
673+
sign
674+
metalplate1
675+
metalplate2
676+
metalplate3
677+
metalplate4
678+
metaltriplate1
679+
metaltriplate2
680+
metaltriplate3
681+
metaltriplate4
682+
metalwindow1
683+
metalwindow2
684+
metalwindow3
685+
metalwindow4

0 commit comments

Comments
 (0)