
Members Online»
0 Active | 12 Guests
Online:
|
LATEST FORUM THREADS»
by ammys09
Posts: 1 / 241 warfare
CoD4 Map + Mod Releases by devielthan
Posts: 1 / 1774 Key Things the Design Comm...
CoDBO MP Mapping by rabbihasan21
Posts: 1 / 1095 Three Out of 10 Television...
CoDBO General by warrior777
Posts: 2 / 898 Voting menu on maps
CoD+UO General by
Posts: 0 / 788 Hauling 911
CoDBO3 General |
Polls»
|
|
| Topic | Replies | Views | Last Post | |
![]() |
level.onTimeLimit results in "self" becoming undefined Call of Duty 4 : CoD4 Scripting Simply remove "self" in the beginning and it should work. Code: onTimeLimit() { iprintlnbold("time limit reached"); // code } ... [more] |
15 | 2546 | Jun 7, 2016 07:51 am by FzBr.d4rk ![]() |
![]() |
Call of Duty Security MOD Call of Duty 4 : CoD4 General Yes its possible, but you will need Cod4 1.7a to run with a server-side mod. ... [more] |
3 | 3510 | Jan 7, 2015 12:37 am by FzBr.d4rk ![]() |
![]() |
Weapon Clip models wont load[SPi] Call of Duty 4 : CoD4 SP Mapping SPi the code must be after the "maps\_load::main()" Code: maps\_load::main(); level.weaponClipModels = []; level.weaponClipModels[0] = "weapon_m16_clip"; level.weaponClipModels[1] = "weapon_mp5_clip"; level.weaponClipModels[2]... [more] |
1 | 1668 | Jun 29, 2014 02:38 pm by FzBr.d4rk ![]() |
![]() |
Need a little help Call of Duty 4 : CoD4 MP Mapping Tthis will work but only once. You need to add a loop. Code: hurt_trigger_sound() { hurt_trig = getent("hurt_trigger","targetname"); for(;;) { hurt_trig waittill("trigger"); level.player playsound ("sound_to_play"); } } ... [more] |
6 | 2637 | Feb 7, 2014 03:24 am by FzBr.d4rk ![]() |
![]() |
Problem with deathrun. Call of Duty 4 : CoD4 General The variable "level.freefreeRun" is not defined.... [more] |
3 | 3207 | Aug 7, 2013 04:31 pm by FzBr.d4rk ![]() |
![]() |
Vehicle Help Call of Duty 4 : CoD4 SP Mapping golgo13 writes...Quote: I've been told that the script_vehicle should have a [ ] SPAWNER checkbox, but I don't see one, I only see [ ] USABLE so I'm stumped. Only AIs that will be in the vehicle must have checkbox []spawner.... [more] |
12 | 1717 | Jul 9, 2013 09:34 am by FzBr.d4rk ![]() |
![]() |
Vehicle clip file question Call of Duty 4 : CoD4 SP Mapping It has been a while since I read about this on a topic in this site. I don't rember anymore the name of the topic. ... [more] |
9 | 2520 | Jun 25, 2013 08:03 pm by FzBr.d4rk ![]() |
![]() |
Vehicle clip file question Call of Duty 4 : CoD4 SP Mapping Copy the folder "collmaps" to the folder where you installed the COD, is usually "Activision".... [more] |
9 | 2520 | Jun 25, 2013 07:13 pm by FzBr.d4rk ![]() |
![]() |
How to can i create unclipped brush? Call of Duty 4 : CoD4 MP Mapping ... [more] |
3 | 1986 | Jun 8, 2013 07:26 am by FzBr.d4rk ![]() |
![]() |
water Call of Duty 4 : CoD4 MP Mapping Try to recompile reflections.... [more] |
7 | 2677 | May 22, 2013 11:16 am by FzBr.d4rk ![]() |
![]() |
Help please! Missing gun parts! Call of Duty 4 : CoD4 SP Mapping reinstall the folders :"materials" and "material_properties" in the raw folder.... [more] |
3 | 1756 | Apr 19, 2013 03:30 pm by FzBr.d4rk ![]() |
![]() |
array pacifist error!!! Call of Duty 4 : CoD4 SP Mapping Code: enemies = getentarray( "starting_force", "targetname" ); for(i = 0; i ... [more] |
3 | 1345 | Apr 18, 2013 05:41 pm by FzBr.d4rk ![]() |
![]() |
Question about AI Call of Duty 2 : CoD2 SP Mapping node = getnode("whatever","targetname"); node_2 = getnode("whatever_2","targetname"); ai = getEnt("whatever_3", "targetname");//The actor ai setGoalNode(node); ai waittill("goal"); ai allowedstances("prone");//go prone ai setGoalNode(node_2)... [more] |
3 | 1974 | Mar 3, 2013 02:05 am by FzBr.d4rk ![]() |
![]() |
Scripting mistake: bad syntax Call of Duty 2 : CoD2 Scripting you forgot the ";" in the end of the line. Code: dt1() { dt1=getent("dt1","targetname"); death=getent("d1","targetname"); trig=getent("tdt1","targetname"); while(true) { trig waittill ("trigger"); dt1 movez (80,1); death movez (80,1); ... [more] |
3 | 1823 | Feb 23, 2013 01:17 pm by FzBr.d4rk ![]() |
![]() |
Crash when looking at "something"? Call of Duty 4 : CoD4 Scripting Try to delete all cars.... [more] |
3 | 2356 | Feb 14, 2013 08:59 am by FzBr.d4rk ![]() |
![]() |
Green building. Call of Duty 4 : CoD4 MP Mapping Torq2 writes...Quote:Thanks Darkshark, Unfortunately this didn't work. The shortcut doesn't work sometimes ... [more] |
5 | 1970 | Feb 11, 2013 09:23 pm by FzBr.d4rk ![]() |
![]() |
Green building. Call of Duty 4 : CoD4 MP Mapping press F8 to disable the sunlight that make the 3d window goes dark when you select an object sry for the english.... [more] |
5 | 1970 | Feb 11, 2013 06:32 am by FzBr.d4rk ![]() |
![]() |
How do I set Dvar for all players? Call of Duty 4 : CoD4 Scripting SetClientDvar( dvarName, value ) example: self SetClientDvar( "cg_drawhud", "0" ); http://zeroy.com/script/ ... [more] |
6 | 4555 | Feb 10, 2013 05:23 am by FzBr.d4rk ![]() |
![]() |
Objective Kill enemies. How to? Call of Duty 4 : CoD4 SP Mapping try this: training,,intro/music/intro.mp3,,0.5,,music,,,,,music,streamed,,,,,,,,,,mus ic,nowetlevel fulldrylevel,,,!PC... [more] |
9 | 4027 | Feb 3, 2013 01:41 pm by FzBr.d4rk ![]() |
![]() |
Soundaliases don't work.... Call of Duty 4 : CoD4 SP Mapping Try to convert the mp3 to wav.... [more] |
10 | 2356 | Feb 1, 2013 12:06 pm by FzBr.d4rk ![]() |
![]() |
Soundaliases don't work.... Call of Duty 4 : CoD4 SP Mapping please post the line that you call the soundalias file.... [more] |
10 | 2356 | Jan 31, 2013 08:20 am by FzBr.d4rk ![]() |
![]() |
Radiant problems/issues. Call of Duty 4 : CoD4 SP Mapping What the hell?have you modified your bin folder?... [more] |
3 | 1860 | Jan 27, 2013 10:22 pm by FzBr.d4rk ![]() |
![]() |
please upload animscripts files i need them! Call of Duty 4 : CoD4 MP Mapping ... [more] |
3 | 2289 | Jan 27, 2013 12:17 pm by FzBr.d4rk ![]() |
![]() |
Cod radiant problem help plzz!!! Call of Duty 4 : CoD4 MP Mapping You have to delete or move the reflection probe.... [more] |
5 | 3267 | Jan 8, 2013 09:06 pm by FzBr.d4rk ![]() |
![]() |
Cod radiant problem help plzz!!! Call of Duty 4 : CoD4 MP Mapping You have a Reflection Probe in solid. ERROR: Reflection probe at (648.0 -776.0 8.0) is in solid.... [more] |
5 | 3267 | Jan 7, 2013 11:08 pm by FzBr.d4rk ![]() |
| MODSonline.com Forums |
Latest Syndicated News»
Comments: 5
Codutility.com up and runn...
Nice, and there still using the logo and template for the screenshots, which... Comments: 5
Codutility.com up and runn...
dundy writes...Quote:Call of Duty modding and mapping is barly alive only a ... Comments: 5
Codutility.com up and runn...
Mystic writes...Quote:It seems to me the like the site is completely dead?
... Comments: 5
Codutility.com up and runn...
It seems to me the like the site is completely dead? Comments: 5
Codutility.com up and runn...
Yeeaahhhh.........
|
Latest Downloads»
mp_Temple
Call of Duty: Mods: Multiplayer (624.12Kb) OHMY Don Quixote
Call of Duty 2: Maps: Multiplayer (5.76Mb) OHMY Neuburg
Call of Duty 2: Maps: Multiplayer (6.84Mb) OHMY Tebessa
Call of Duty 2: Maps: Multiplayer (7.36Mb) OHMY POW Camp
Call of Duty 2: Maps: Multiplayer (2.15Mb) |
Partners & Friends»
|
Site Links and Information
|
Partners
|
Friends
|
Copyright © MODSonline LLC
Tresware Content Management System © 2011
Website Designed by LKFX and Developed by Tresware