Art of War Central
View in iTunes
Please help us to raise in the ranks of podcasting and subscribe to our itunes feed using the link above.
The next MODSonair show will air LIVE on:
03/21/2010 12:03 EDT

Time remaining:
We Dontated to PixelEquity
"A total overhaul mod changes or redefines the gameplay style of the original game, while keeping it in the original game's universe or plot." 3
 
Site News   |   Aggregated News   |   Forums   |   Tutorials   |   Downloads   |   Projects   |   Weblinks
Latest Forum Threads 
CoD2 MP Mapping.. Posts: (3) Views: (12) by PanZerReBorN
News Around the .. Posts: (14) Views: (91) by vT-Ownage
CoD4 MP Mapping.. Posts: (1) Views: (11) by Infern4ll
CoD4 Map + Mod R.. Posts: (25) Views: (195) by voidsource
CoD4 Scripting.. Posts: (2) Views: (21) by DemonSeed
CoD2 SP Mapping.. Posts: (11) Views: (127) by IvanFilip
CoD4 Scripting.. Posts: (4) Views: (70) by Samuel033
CoD4 Scripting.. Posts: (1) Views: (30) by j4cken
CoD4 MP Mapping.. Posts: (3) Views: (50) by cskiller86
CoD4 Scripting.. Posts: (1) Views: (33) by mike121
Back to Home Page
MODSCON 2010 L4D2 Contest
Dr. Nano Free for the iPhone and iPod Touch
Register/Login to Add a Tutorial
Tutorials
CoD Mapping
ratings:
Awful Rating
Poor Rating
Average Rating
Good Rating
Excellent Rating
How to start while prone or crouching
Versions: You must be logged in to view history.
94Sniper will show you how to make a player spawn crouched or proned.

This tut will explain how to spawn in prone or crouch position.

This is really pretty simple. There are two basic options. 1, spawn while crouching. 2, spawn while prone.

code for spawning prone:

//basic script by SPARKS
//modified by 94Sniper

level.player allowStand(false);
level.player allowCrouch(false);
wait(1);
level.player allowStand(true);
level.player allowCrouch(true);
level.player allowProne(true);

 

code for spawning crouch:

//basic script by SPARKS
//modified by 94Sniper

level.player allowStand(false);
level.player allowProne(false);
wait(1);
level.player allowStand(true);
level.player allowCrouch(true);
level.player allowProne(true);

Written by 94sniper and .Sparks