Search:

Page 1 of 2 1 2

Search: Search took 1.00 seconds.

  1. I just happened to watch the Battalion stream on...

    I just happened to watch the Battalion stream on Twitch where they talked about the game and answered to the community's questions about it.
    So, just a few things

    They will definitely support the...
  2. Replies
    4
    Views
    5,588

    Well, I don't really get your problem. You...

    Well, I don't really get your problem. You created tag_flash and you got tag_flash... So I can only assume what you really need.
    I guess viewmodel weapons are usually not 'rigid' but rather of type...
  3. Replies
    5
    Views
    10,489

    Try it out. The radius depends on how wide you...

    Try it out. The radius depends on how wide you want the trigger to be and the height on how high you want it to be.
  4. Thread: Headicon

    by Peterlankton
    Replies
    11
    Views
    9,998

    Making it short. player.statusicon = rankicon;...

    Making it short.

    player.statusicon = rankicon; //this makes the rankicon show up in the scoreboard
    player.headicon = rankicon; //changes the headicon

    That's how you do it.
  5. Remove if(level.timelimit > 0) {...

    Remove


    if(level.timelimit > 0)
    {
    if(!isDefined(level.clock))
    {
    level.clock = newHudElem();
    level.clock.horzAlign = "left";
    level.clock.vertAlign = "top";
  6. I will take the tdm.gsc as an example. As I know...

    I will take the tdm.gsc as an example.
    As I know you can simply change something in that file. Just search for this line

    thread maps\mp\gametypes\_hud_teamscore::init();
    and change it to
    ...
  7. Replies
    4
    Views
    4,634

    Set 'cg_draw2d' to '0'

    Set 'cg_draw2d' to '0'
  8. Replies
    23
    Views
    35,049

    I think nobody on earth is interested in...

    I think nobody on earth is interested in downloading any files with 12kb/s. So don't worry about that.
  9. Replies
    13
    Views
    595,597

    Yup, that actually should work. Though I would...

    Yup, that actually should work.

    Though I would recommend using it like this.


    self maps\mp\gametypes\_persistence::statSet("kills", 0);
    kills = self...
  10. Replies
    2
    Views
    3,300

    I think this tool will help you:...

    I think this tool will help you: http://www.diegologic.net/diegologic/CoD_Tools/XmodelExporter.htm

    EDIT: This is also a great help http://www.gamefront.com/files/service/thankyou?id=20850076...
  11. Replies
    12
    Views
    10,249

    I did not mean you. The last part was meant as an...

    I did not mean you. The last part was meant as an answer to Loveboy's post. Sorry for that.
  12. Replies
    12
    Views
    10,249

    When the xAnim Exporter was released I requested...

    When the xAnim Exporter was released I requested Tom to create a Maya 6.0 plugin as well (you're welcome guys). And now there is a 6.0 version included, so I don't see a problem.
    Did you install it...
  13. Replies
    12
    Views
    10,249

    Install the included plugin for maya, so that you...

    Install the included plugin for maya, so that you can import the .tanim files.
    I think Tom has some video on youtube where he shows how to use his maya extension.
  14. Replies
    12
    Views
    10,249

    In the past I fully ported CoD5 weapons to CoD2....

    In the past I fully ported CoD5 weapons to CoD2. Sounds, animations, model. All original CoD5. Take a look at my post:...
  15. Replies
    5
    Views
    7,833

    I'm looking for a fastfile extractor which can...

    I'm looking for a fastfile extractor which can export sounds from CoD4. Unfortunately, the only way seems to be doing that in some very complicated way with hex-editors and stuff, since Tom's program...
  16. Replies
    7
    Views
    5,296

    For Black Ops I you need the Mod Tools(available...

    For Black Ops I you need the Mod Tools(available on Steam, provided that you have purchased BO) and then you can use Tom's Xmodel Utils. That works for most of the models, but some are still not...
  17. Replies
    1
    Views
    2,640

    It's if(tmp[tmp.size]

    It's if(tmp[tmp.size] <= 1)
    not if(tmp[tmp.size] =< 1)
  18. Replies
    6
    Views
    5,389

    As EvoloZz said, there is a limit. It doesn't...

    As EvoloZz said, there is a limit. It doesn't matter in which or how many script-files you precache them. You have reached the maximum and the only way to avoid that invisible weapons "bug" is to...
  19. Replies
    7
    Views
    8,511

    Good with your fute from me, too, buddy. I hope...

    Good with your fute from me, too, buddy. I hope you'll love the job and have great colleagues :)
    People are going to really miss you here.

    Can't dither between two dates...
    Therefore Imma go...
  20. Replies
    9
    Views
    6,826

    Here's an automated way: level.ranknames =...

    Here's an automated way:



    level.ranknames = [];
    level.ranknames[0] = &"Rank 1";
    level.ranknames[1] = &"Rank 2";
    for(i=0;i<level.ranknames.size;i++)
    {
    precacheString(level.ranknames[i]);
  21. Replies
    5
    Views
    8,057

    dds2iwi converter is the most awful choice to...

    dds2iwi converter is the most awful choice to make.
    Though you could try to export the dds with dtx3(you have lots of options to choose from: no-alpha, dxt1, dxt3, dxt5, whatsoever), dxt3 is what...
  22. Replies
    10
    Views
    16,676

    That's at least a start. The problem in this...

    That's at least a start.
    The problem in this case would be that the player, who is being asked to exchange weapons, had only like a millisecond of time to press the F-Button, since you only check...
  23. Replies
    10
    Views
    16,676

    Hope I'm able to explain what Kungy means in a...

    Hope I'm able to explain what Kungy means in a newbie way.
    You need to add a loop: while() or for(;;)
    a loop is something that does the same thing over and over again
    example:
    seconds = 0;...
  24. Replies
    5
    Views
    3,893

    In CoD2 I always used this method: newWeap =...

    In CoD2 I always used this method:


    newWeap = "mp44_mp";
    curWeap = player getCurrentWeapon();
    slot = "primary";
    if(player getWeaponSlotWeapon("primary") != curWeap)
    slot = "primaryb";...
  25. Replies
    4
    Views
    5,301

    This is in english: http://www.zeroy.com/script/...

    This is in english:
    http://www.zeroy.com/script/

    1. Unfortunately I forgot how the sound thingy works, but according to the script index you should try this one:

    player PlaySoundToPlayer(...
Results 1 to 25 of 37
Page 1 of 2 1 2