Fisher

Former Member
  • Content Count

    779
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

  • Days Won

    7

Posts posted by Fisher


  1. I've been wanting to learn how to program Cod 4 for awhile and haven't found anyway to learn besides trial and error and reading other users code.

    I now want a tutor or someone who has good knowledge on call of duty not only to try teach me but create some projects with me along the way.

    I know the basics of code and call duty code as I learned python threw code academy. I have my own server which runs of my pc when I try code which is how i know the basics.

    Thanks for reading


  2. I have recently been trying to disable the damage direction indicator but cant find the the dvar. I tried using this dvar from a lost i found of a website but it does not seem to work.

    cg_drawDamageDirection "1"

    Does anyone have a good source of dvars i may use or just the correct dvar for the indicator?.

    Thanks anyways.


  3. Not in my eyes. Braxi made deathrun as a non profit mod but now she does seem to care about it and just has it there for a income source which I see is the wrong thing to do. Seen as there is legal things stoppping me why wouldn't I?

    I understand that people put there hard time into making the mod but keep it free and keep it fun I say.

    How about you spend hundreds of fucking hours coding something, then tell me if you changed you mind.

    I agree with getting help for developers but not selling the product. In my opinion she should of set up some sort of donation service that would keep her developing the mod and if no one donated just don't update the mod.

    Let the server owners develop the mod for you if there not willing to pay for you too.


  4. What he means is if you want to use a command you will need to enable cheats and then use the command scr_player_maxhealth (the max health value).

    I would suggest inserting it into some code setDvar("scr_player_maxhealth", 120);

    I wouldn't know where to put this as I don't work with promod files.


  5. I have recently tried to add custom weapon to the deathrun mod that i have edited with the asset manager. After failing with no errors and just blank space i tried to just add the barret 50 cal and still the same problem. I have added the barret_mp and the iwi file to the mod what could be the problem im using this script to spawn it in.

    ​barret()
    {
    self takeallweapons();
    self giveWeapon( "barret_acog_mp" );
    self giveMaxAmmo( "barret_acog_mp" );
    self SwitchToWeapon( "barret_acog_mp" );
    }

    Thanks for reading