MODSonline Subscriptions
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
"Mods can significantly outshine and/or continue the success of the original game even when it is dated." 1
 
Site News   |   Aggregated News   |   Forums   |   Tutorials   |   Downloads   |   Projects   |   Weblinks
Latest Forum Threads 
General Gaming.. Posts: (7) Views: (134) by Rasta
CoD4 SP Mapping.. Posts: (2) Views: (10) by tomv8
CoD4 MP Mapping.. Posts: (4) Views: (66) by Infern4ll
CoD4 Scripting.. Posts: (9) Views: (253) by DemonSeed
CoD2 MP Mapping.. Posts: (12) Views: (97) by StrYdeR
CoDUO Mapping.. Posts: (5) Views: (72) by sternkaa
MODSon-air.. Posts: (1) Views: (23) by foyleman
Back to Home Page
MODSCON 2010 L4D2 Contest
Art of War Central
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