MODSonline
  Welcome Guest to MODSonline Home | Forums | Register | Login
Main-Menu
Home
Login
Register
Add Download
Add News
Add Tutorial *
Forums

Advertise
Affiliate Store US *
Affiliate Store UK *
Affiliate Store CA *
Angry Letter Generator
Avatar Upload
Calendar of Games
Contact
Downloads
FAQs
Forums
Member List
Member Projects
News
News Grabber *
Policy
Polls
Private Messages
Reviews
Screenshot Gallery
Search
Servers - Game
Store - Shirts *
Subscribe
Topics
Tutorials
Weblinks
Wiki *
Tutorials
CoD Mapping
CoDUO Mapping
CoD2 Mapping
CoD4 Mapping
CoDWW Mapping
CoD FAQs
HL2 Mapping
HL2 FAQs
SOF1 Mapping
Crysis Mapping
Q4 Mapping
Doom 3 Mapping
Doom 3 FAQs
UT2K3 Mapping
SOF2 Mapping
SOF2 FAQs

Lightray Modeling
General Modeling
General Modding
Adobe Photoshop
Common Mapping Errors

Readme.txt Generator
Members-Online
Papik [Today]
Kill_me_now [Forum]
{PADZ}grim... [Forum]

3 Members and 14 Guests
Chat MODSonline
0 People Now Chatting
MODSOnline TeamSpeak

download TeamSpeak

In-The-News
Monday, Dec. 1st
A message from foyleman
Sunday, Nov. 30th
MODSonair 156 Live
Friday, Nov. 28th
MODSonair Episode 155
Wednesday, Nov. 26th
MODSonair Forum Buttons
Monday, Nov. 24th
Holiday Gift Guide 2008 - PC
Latest Poll
Single or Multiplayer maps for World at War?
Single-Player 30.12%
Multiplayer 61.45%
WHAT!? The tools are out? 8.43%
Read More...
10 comments

Newsletter
Name:
Email:
Newsletter Archives
Your Membership
User Name:
Password:
Register.
In The Forums
FX help
CoD:WW Scripting.. Posts: (19) Views: (205) by Tally
A message from foyleman
In The News.. Posts: (32) Views: (171) by gopherchucks
nazi_zombie problem with map : (
CoD:WW Level Des.. Posts: (1) Views: (12) by Papik
Sharks!!!!!!!!!
CoD:WW Level Des.. Posts: (8) Views: (189) by SparkyMcSparks
Google 468 Banner Half-Life 2 Mods for Dummies
CoDWW Download
Forums
MODSonline.com Forums

Welcome to the MODSonline.com forums. Looking for Frequently Asked Questions? Check out our FAQs section or search it out using the SEARCH link below. If you are new here, you may want to check out our rules and this great user's guide to the forums and the website.
For more mapping and modding information, see our Wiki: MODSonWiki.com

Jump To:
Latest Posts by HarkoninVSC
These topics are the latest to have been updated with new posts.
Show me more: 50 100 150
MODSonline.com Forums
Latest Posts
Subscribed Posts
Search
  Topic Replies Views Last Post
Linking Door Handle to a Moving Door
Call of Duty 4 : CoD 4 Scripting
You have several options; 1) Place the "doorhandle" in the editor and link it to the door. Then call it in script with doorhandle = self.target 2) use the linkto function in script eg..doorhandle linkto(door) As far as placement of the code sni... [more]
5 186 Apr 24, 2008 10:19 am
by HarkoninVSC
How to- explosive_models
Call of Duty 4 : CoD 4 Level Design
Darn typos! Code: if(isdefined(self.script_fxid) self.fx = loadfx(self.script_fxid); Code: playfx(self.fx, self.origin); edited on Apr. 21, 2008 06:19 pm by HarkoninVSC... [more]
12 351 Apr 21, 2008 06:16 pm
by HarkoninVSC
How to- explosive_models
Call of Duty 4 : CoD 4 Level Design
Also if you want interchangeable FX I would use this entry; Code: if(isdefined(self.script_fxid) self.fx = loadfx =(self.script_fxid); instead of Code: level.breakables_fx["explode"] = loadfx( "explosions/grenadeexp_metal" ); and add a ... [more]
12 351 Apr 21, 2008 05:23 pm
by HarkoninVSC
Moving HUD-Elem
Call of Duty 4 : CoD 4 Scripting
It would be easier to run a search for "Aimbot" on fpsbanana or a similar website. Keep in mind punkbuster will detect it.... [more]
4 138 Apr 19, 2008 08:43 pm
by HarkoninVSC
Getting Nearest Object
Call of Duty 4 : CoD 4 Level Design
Survey says?... [more]
6 159 Apr 16, 2008 06:41 pm
by HarkoninVSC
Getting Nearest Object
Call of Duty 4 : CoD 4 Level Design
Yes we know that "script" objects work, but my question was for "world" objects not "script" objects. I'm also looking at "classname" for multiple objects not "targetname" for individual entities.... [more]
6 159 Apr 16, 2008 04:01 pm
by HarkoninVSC
Getting Nearest Object
Call of Duty 4 : CoD 4 Level Design
I'm really bored and at work so I was thinking about scripting collision by "getting the nearest object". Now I know you can track entities with class types such as ("script_model","classname"); but can you also use ("world","classname");? For exam... [more]
6 159 Apr 15, 2008 08:01 pm
by HarkoninVSC
Problem with Alphawolfs 4 step fx tutorial
Call of Duty 4 : CoD 4 Scripting
Decoder says; Quote:Actually this thread was posted a few days ago, it was on the first page and therefore relevent imho. My point exactly. If the search option was used with the words FX and tutorial it would have turned up atleast a dozen threa... [more]
16 382 Apr 15, 2008 12:19 am
by HarkoninVSC
Problem with Alphawolfs 4 step fx tutorial
Call of Duty 4 : CoD 4 Scripting
That method will "work" but it uses redundant files and folders. For a more efficient way read my post. P.S. This topic has been done NUMEROUS TIMES already.... [more]
16 382 Apr 14, 2008 11:56 pm
by HarkoninVSC
Making Dynamic script models
Call of Duty 4 : CoD 4 Level Design
Heres the latest version. Most of it works but the rotation time and angles are still a little off. Any help would be appreciated. Code: dyna_think() { targetdamage = 0.1; totaldamage = 0; self setCanDamage(true); while(true) { self ... [more]
23 338 Apr 13, 2008 05:13 pm
by HarkoninVSC
Making Dynamic script models
Call of Duty 4 : CoD 4 Level Design
Yeah either way it works with fraction or position, thats not the problem. My problem is with rotation, basically even with the pos check it can still rotate partially under the floor/ground. What I wanted was to round off the rotation to match the fl... [more]
23 338 Apr 13, 2008 02:11 pm
by HarkoninVSC
Making Dynamic script models
Call of Duty 4 : CoD 4 Level Design
Ok so update, I'm using a bullet trace for Z positioning, so it has a downward "pull". Not exactly gravity but it does the trick for a quick and dirty way. I can get movement and distance as well, but the rotation is a little off anybody see an easier... [more]
23 338 Apr 13, 2008 01:41 pm
by HarkoninVSC
infinity ward forums offline
Call of Duty 4 : CoD 4 Level Design
They've only been down for 2 days.... [more]
11 179 Apr 13, 2008 12:53 pm
by HarkoninVSC
Making Dynamic script models
Call of Duty 4 : CoD 4 Level Design
I can get all three to work individually, i uncommented them for posting purposes.... [more]
23 338 Apr 13, 2008 12:11 pm
by HarkoninVSC
Making Dynamic script models
Call of Duty 4 : CoD 4 Level Design
Alrighty then, I'm having some minor issues within the script. So far I've been able to get an object to rotate to the target position, moveto the target position or have gravity. I can't seem to get all 3 functions to work together however. ANy help is ... [more]
23 338 Apr 13, 2008 11:48 am
by HarkoninVSC
Making Dynamic script models
Call of Duty 4 : CoD 4 Level Design
O.K. I'll have to modify the movegravity then, thanks.... [more]
23 338 Apr 12, 2008 08:59 am
by HarkoninVSC
Making Dynamic script models
Call of Duty 4 : CoD 4 Level Design
Yep I noticed that, had to add clip with the linkto function. Here is the question, is the physicslaunch command clientside only? If so its redundant since I'm doing this to circumvent the limitation of dynamic models.... [more]
23 338 Apr 12, 2008 08:50 am
by HarkoninVSC
Making Dynamic script models
Call of Duty 4 : CoD 4 Level Design
The movegravity command seems to only kick in with explosions and melee attacks. I'm at work so can't check this but does the physicslaunch command work in MP I know the script ref says SP only but we know how accurate that is, lol. ... [more]
23 338 Apr 11, 2008 07:27 pm
by HarkoninVSC
Modifying Patches
Call of Duty 4 : CoD 4 Level Design
Harkonin said; Quote: Press V for the vertices, click on vertices to select them by column, click it again to change direction of column. Once is the X axis. Twice is the y axis. Ctrl shift A = add a column Ctrl shift Q = delete a column... [more]
6 164 Apr 10, 2008 08:52 pm
by HarkoninVSC
Modifying Patches
Call of Duty 4 : CoD 4 Level Design
Press V for the vertices, click on vertices to select them by column, click it again to change direction of column. Once is the X axis. Twice is the y axis. Ctrl shift A = add a column Ctrl shift Q = delete a column Ctrl shift x = clip col... [more]
6 164 Apr 10, 2008 07:46 pm
by HarkoninVSC
Making Dynamic script models
Call of Duty 4 : CoD 4 Level Design
Update, I've gotten it to work but am currently debugging the collision. The problem I had before was the ent was not being recognized so I added a isdefined command. Trying to get collision with several traces, I'll keep you guys posted.... [more]
23 338 Apr 10, 2008 01:31 pm
by HarkoninVSC
Making Dynamic script models
Call of Duty 4 : CoD 4 Level Design
Ok so I've been trying to mimic dynamic movement with script_models and brush_models with this script. The code seems sound and does not return any errors but the objects and brushes also don't do anything. Any suggestions would be greatly appreciated ... [more]
23 338 Apr 10, 2008 11:11 am
by HarkoninVSC
[Add Tutorial] How to make a working door for COD4
Call of Duty 4 : CoD 4 Level Design
HarkoninVSC says Quote: For example if one door is opening north and you want another to open south you'll copy the original door origin and trigger and rotate it 180 degrees. If you can't get that to work you could define left and right in scr... [more]
44 890 Apr 9, 2008 08:56 pm
by HarkoninVSC
[Add Tutorial] How to make a working door for COD4
Call of Duty 4 : CoD 4 Level Design
Yes, you can.... [more]
44 890 Apr 8, 2008 07:32 pm
by HarkoninVSC
Breakable wall\window help
Call of Duty 4 : CoD 4 Level Design
Better yet make them dynamic_brushmodels, type/destruct, destroyEfx/yourchoosing. ... [more]
12 283 Apr 5, 2008 12:03 pm
by HarkoninVSC
MODSonline.com Forums
All logos and trademarks and information in this site are property of MODSonline LLC © 2008.
The comments are property of their posters.
RSS news feeds for MODSonline can be found News.php.
MODSonline Subscriptions
Partners
CODAddicts - Call of Duty News & Downloads
Battle for Europe COD2
modbase.be
Call of Duty Headquarters
The Firing Box
XoXide
Frag Universe
Ask About
Advertising
Friends
The Clan Database
After Life Gaming
CoD 4 Base
Ask About
Advertising
Link to Us
MODSonair
View in iTunes
Please help us to raise in the ranks of podcasting and subscribe to our itunes feed using the link above.
MODSonair Releases
MODSonair Episode 155
MODSonair Episode 154
MODSonair Episode 153
MODSonair Episode 152
MODSonair Episode 151
Next Show
The next MODSonair show will air LIVE on:

Time remaining:
Copyright © 2008 MODSonline
Tresware Content Management System Copyright © 2008 Tresware
Website Designed and Hosted   Tresware