[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 112: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 112: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4668: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3815)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4670: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3815)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4671: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3815)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4672: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3815)
Battlefield Modding Tutorials BFMODS :: View topic - More damage on one certain weapon
Battlefield Modding Tutorials BFMODS
https://battlefieldmodding.com/ssm/phpBB3/

More damage on one certain weapon
https://battlefieldmodding.com/ssm/phpBB3/viewtopic.php?f=3&t=4041
Page 1 of 2

Author:  Sondre [ Thu May 08, 2008 1:45 pm ]
Post subject:  More damage on one certain weapon

Heya, im making a modded omaha and i've added some "canadian scout" and now I want to add wespe projectile to it. Could I do:

ObjectTemplate.Active Canadian_Scout
ObjectTemplate.ProjectileTemplate WespeProjectile
High velocity

I also want a modded colt in ONLY that kit which I spawned...


Cheers
Sondre ;-)

Author:  Iced Earth [ Thu May 08, 2008 4:13 pm ]
Post subject:  Re: More damage on one certain weapon

You can change the projectile of a weapon, but not a kit...since a kit doesn't have a projectile. :shock:

If you want 1 weapon only to have special properties you need to remove it from the rest of the level. Say you want the No4 (sniper) to be modded (shoot wespe shell). Remember, the No4 and No4sniper fire the same bullet.

In the maps init.con file, you need to change the allied kit for sniper from US_Scout to German_Scout, and US_Engineer to German_Engineer. This will give everyone the K98, and you can place the No4 rifle anywhere you'd like on the map.

From there you would:
ObjectTemplate.Active No4Projectile
ObjectTemplate.projectileTemplate <whatever>

Author:  Sondre [ Thu May 08, 2008 5:54 pm ]
Post subject:  Re: More damage on one certain weapon


Author:  Iced Earth [ Thu May 08, 2008 6:19 pm ]
Post subject:  Re: More damage on one certain weapon

Yeah they will, but it would just be like picking up a german kit like you normally would. Or, for a different look, you could try the japanese kits. :o

Author:  Sondre [ Fri May 09, 2008 1:23 pm ]
Post subject:  Re: More damage on one certain weapon

Or I could stop wondering and having Jap kit as my super weapon :shock:

Author:  smytti12 [ Fri May 09, 2008 7:18 pm ]
Post subject:  Re: More damage on one certain weapon

Hmm question. Can you add weapons directly to a soldier- i realize it would look little weird.

Author:  Why Two Kay [ Mon May 19, 2008 12:13 pm ]
Post subject:  Re: More damage on one certain weapon


Author:  ZOOMER [ Mon May 19, 2008 9:06 pm ]
Post subject:  Re: More damage on one certain weapon

Now I'm wondering,

Attach a spawner kit to a soldier's helmet. Would not show up SS, but who cares. Press the pickup key...and waalaa you have the weapon in your hand?

Probably crash the whole server as you try to pickup the mobile kit spawner.

Page 1 of 2 All times are UTC
Powered by phpBB® Forum Software © phpBB Group
http://www.phpbb.com/