Login x
User Name:
Password:
Social Links Facebook Twitter YouTube Steam RSS News Feeds

Members Online

»
0 Active | 11 Guests
Online:

LATEST FORUM THREADS

»
warfare
CoD4 Map + Mod Releases
Voting menu on maps
CoD+UO General
Hauling 911
CoDBO3 General

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:
Forum: All Forums : Call of Duty 4
Category: CoD4 MP Mapping
CoD 4 mapping and level design for multiplayer.
Moderators: foyleman, Foxhound, Mystic, StrYdeR, batistablr, Welshy, DrBiggzz, supersword, playername, novemberdobby
Latest Posts
Subscribed Posts
Search
Restricted Access Topic is Locked
Page
Previous Page Next Page
subscribe
Author Topic: weapon ideas???
94sniper
General Member
Since: Jun 15, 2007
Posts: 907
Last: Jun 22, 2009
[view latest posts]
Level 7
Category: CoD4 MP Mapping
Posted: Tuesday, Nov. 20, 2007 11:21 pm
check out what I found in _rank.gsc!!!

Code:
newRankId = self getRank();
rankId = self.pers["rank"];
self.pers["rank"] = newRankId;


I also found this
Code:
getRankInfoMinXP( rankId )
{
	return int(level.rankTable[rankId][2]);
}

getRankInfoXPAmt( rankId )
{
	return int(level.rankTable[rankId][3]);
}

getRankInfoMaxXp( rankId )
{
	return int(level.rankTable[rankId][7]);
}

getRankInfoFull( rankId )
{
	return tableLookupIString( "mp/ranktable.csv", 0, rankId, 16 );
}

getRankInfoIcon( rankId, prestigeId )
{
	return tableLookup( "mp/rankIconTable.csv", 0, rankId, prestigeId+1 );
}

getRankInfoUnlockWeapon( rankId )
{
	return tableLookup( "mp/ranktable.csv", 0, rankId, 8 );
}

getRankInfoUnlockPerk( rankId )
{
	return tableLookup( "mp/ranktable.csv", 0, rankId, 9 );
}

getRankInfoUnlockChallenge( rankId )
{
	return tableLookup( "mp/ranktable.csv", 0, rankId, 10 );
}

getRankInfoUnlockFeature( rankId )
{
	return tableLookup( "mp/ranktable.csv", 0, rankId, 15 );
}

getRankInfoUnlockCamo( rankId )
{
	return tableLookup( "mp/ranktable.csv", 0, rankId, 11 );
}

getRankInfoUnlockAttachment( rankId )
{
	return tableLookup( "mp/ranktable.csv", 0, rankId, 12 );
}

getRankInfoLevel( rankId )
{
	return int( tableLookup( "mp/ranktable.csv", 0, rankId, 13 ) );
}


Let me see what I can do.

@ .Kill3r.
Flame thrower in theory would be pretty easy. make the fire anim into a flame, change the fire sound, reload anim, stuff like that. Also, I'd probably just use the model with the attached grenade launcher, and make it load little tanks of gas so it fires in short burts or something like that. I don't know. I'll figure it out as I go along ;)
Share |
novemberdobby
General Member
Since: Sep 17, 2006
Posts: 1965
Last: Oct 13, 2013
[view latest posts]
Level 8
Forum Moderator
Category: CoD4 MP Mapping
Posted: Wednesday, Nov. 21, 2007 08:05 am
What are you planning with the rank system? mods...different...
Share |
VampGFX
General Member
Since: Jul 5, 2004
Posts: 17
Last: Nov 21, 2007
[view latest posts]
Level 1
Category: CoD4 MP Mapping
Posted: Wednesday, Nov. 21, 2007 12:24 pm
Are you able to create/edit perks at all?
would it be possible to make a motion sensor?
just an idea...
Share |
M95*UK*
General Member
Since: Oct 7, 2007
Posts: 7
Last: Feb 7, 2008
[view latest posts]
Level 0
Category: CoD4 MP Mapping
Posted: Wednesday, Nov. 21, 2007 12:33 pm
I would like to see the single player scope zoom function (Using W and S keys) for Sniper rifles in multiplayer, even if it is only restricted to the Barrett .50 rifle. At the moment there is no need for it, but once bigger custom maps are made it would be a very nice touch.

Cy... onara!

[sniper]
Share |
94sniper
General Member
Since: Jun 15, 2007
Posts: 907
Last: Jun 22, 2009
[view latest posts]
Level 7
Category: CoD4 MP Mapping
Posted: Wednesday, Nov. 21, 2007 05:48 pm
VampGFX writes...
Quote:
Are you able to create/edit perks at all?

Cyrus* writes...
Quote:
I would like to see the single player scope zoom function (Using W and S keys) for Sniper rifles in multiplayer


Anyone else see a idea here? *cackles*

94Sniper
Share |
novemberdobby
General Member
Since: Sep 17, 2006
Posts: 1965
Last: Oct 13, 2013
[view latest posts]
Level 8
Forum Moderator
Category: CoD4 MP Mapping
Posted: Wednesday, Nov. 21, 2007 07:38 pm
@Creating perks

You could add virtual perks in a mod, such as a quicker run speed or other custom junk...a bit of scripting should take care of it.
Share |
|DA|DarkDilbert
General Member
Since: Jun 5, 2006
Posts: 675
Last: Apr 29, 2008
[view latest posts]
Level 6
Category: CoD4 MP Mapping
Posted: Wednesday, Nov. 21, 2007 08:20 pm
first and only mod i want for this is "super space ninja" rank.
Share |
94sniper
General Member
Since: Jun 15, 2007
Posts: 907
Last: Jun 22, 2009
[view latest posts]
Level 7
Category: CoD4 MP Mapping
Posted: Wednesday, Nov. 21, 2007 09:03 pm
|DA|DarkDilbert writes...
Quote:
first and only mod i want for this is "super space ninja" rank.


WTF? [lol]
Share |
|DA|DarkDilbert
General Member
Since: Jun 5, 2006
Posts: 675
Last: Apr 29, 2008
[view latest posts]
Level 6
Category: CoD4 MP Mapping
Posted: Wednesday, Nov. 21, 2007 09:16 pm
i'm serious. i want that rank

edited on Nov. 21, 2007 04:17 pm by |DA|DarkDilbert
Share |
94sniper
General Member
Since: Jun 15, 2007
Posts: 907
Last: Jun 22, 2009
[view latest posts]
Level 7
Category: CoD4 MP Mapping
Posted: Wednesday, Nov. 21, 2007 10:45 pm
lol, and for the rank icon you could have a little ninja!!
[lol] [lol] [lol]

I'll even let you fly. Speaking of flying, I'm gonna make some maps with low gravity settings so you can fly and float and hover and all that good stuff. [thumbs_up]
Share |
Restricted Access Topic is Locked
Page
Previous Page Next Page
subscribe
MODSonline.com Forums : Call of Duty 4 : CoD4 MP Mapping

Latest Syndicated News

»
Codutility.com up and runn...
Nice, and there still using the logo and template for the screenshots, which...
Codutility.com up and runn...
dundy writes...Quote:Call of Duty modding and mapping is barly alive only a ...
Codutility.com up and runn...
Mystic writes...Quote:It seems to me the like the site is completely dead? ...
Codutility.com up and runn...
It seems to me the like the site is completely dead?

Partners & Friends

»