Search:

Page 1 of 3 1 2 3

Search: Search took 1.00 seconds.

  1. Probably the best chance of having it fixed is to...

    Probably the best chance of having it fixed is to contact the people at Demonware (Specifically the Dublin office).

    https://demonware.net/about - See "Our People".

    https://twitter.com/demonware...
  2. Replies
    14
    Views
    100,878

    In my experience, I can alt-tab if I wait 5-10...

    In my experience, I can alt-tab if I wait 5-10 seconds after minimizing before restoring the window. If I restore before then, it will crash.

    During those 5-10 seconds the game seems to be...
  3. Replies
    14
    Views
    61,937

    I had a similar issue when using libcod with...

    I had a similar issue when using libcod with Ubuntu 18.04



    Error while loading shared libraries: libmysqlclient.so.18: cannot open shared object file: No such file or directory


    Probably...
  4. Replies
    11
    Views
    43,137

    Thanks everyone for the information. I played...

    Thanks everyone for the information.

    I played around and it looks like CONTENTS_BODY is responsible for displaying the player names, unfortunately enabling it forces collision on so I don't think...
  5. Replies
    3
    Views
    23,314

    Try "attacker iprintlnbold("test");" however this...

    Try "attacker iprintlnbold("test");" however this will only display the message for the person who killed the player.

    EDIT: also if you want self to work try changing


    to
  6. Replies
    20
    Views
    55,575

    Oh yeah I forgot to mention I also made it not...

    Oh yeah I forgot to mention I also made it not pickup any weapons after sprinting has started even if F is released which solves that.

    Only downside is you can't start sprinting while standing on...
  7. Replies
    20
    Views
    55,575

    For my servers I found the pickup code in the...

    For my servers I found the pickup code in the source and changed it to pickup weapons when F is released rather than picking up weapon when it's pressed down. Solves the problem.



    Check out one...
  8. Replies
    11
    Views
    26,657

    Sorry for the late reply, but I just remembered...

    Sorry for the late reply, but I just remembered that this was for fixing bots that are shooting with snipers/semi rifles. Without the fix the gun will 'jam' due to not releasing the shoot button. A...
  9. Replies
    3
    Views
    3,594

    He's trying to make my stolen mod work, would...

    He's trying to make my stolen mod work, would appreciate it if he was ignored.
  10. Replies
    9
    Views
    7,919

    1320 1322 Coming out 3rd November. 1321

    1320

    1322

    Coming out 3rd November.

    1321
  11. Replies
    9
    Views
    7,919

    Call of Duty: WWII - Reveal 26th April

    https://www.callofduty.com/uk/en/wwii
    https://community.activision.com/t5/Call-of-Duty/Call-of-Duty-and-World-War-II-A-Brief-History/ba-p/10226875

    I for one am excited that they are returning to...
  12. Replies
    34
    Views
    35,956

    It's a menu hud, hud.menu if I remember correctly.

    It's a menu hud, hud.menu if I remember correctly.
  13. Some useful IDA macros I thought i'd dump here...

    Some useful IDA macros I thought i'd dump here for future reference;


    typedef unsigned int uint;
    typedef unsigned char uchar;
    typedef unsigned short ushort;
    typedef unsigned long ulong;

    //...
  14. Replies
    3
    Views
    5,973

    I was chatting with a developer about this game &...

    I was chatting with a developer about this game & CoD2, he requested some feedback on what DoW could take from CoD2 and gave me some good replies I thought were worth sharing;





    Hope this...
  15. Replies
    3
    Views
    5,973

    Days of War

    Another WW2 game coming out this year with plenty of potential.


    https://www.youtube.com/watch?v=s46Gxc3lfoA


    https://www.youtube.com/watch?v=5wqxrDitdLE

    Recent concept image on their...
  16. Replies
    11
    Views
    9,988

    We don't mind people asking for help, but we do...

    We don't mind people asking for help, but we do mind when there are kids using google translate that have zero experience when it comes to scripting only ask us to do everything for them. We're not...
  17. Replies
    2
    Views
    4,098

    I suggest looking up symlinks. Example; ln...

    I suggest looking up symlinks.

    Example;

    ln -sf /home/user/CoD2/Source/main/* /home/user/CoD2/MyNewServer/main/

    Edit: Godamnit Mitch why u gotta ninja me.
  18. Replies
    4
    Views
    4,806

    The custom animation needs to be added to...

    The custom animation needs to be added to mp/playeranim.script

    However I should warn you that there is a bug from doing this;...
  19. Replies
    11
    Views
    17,484

    Have a look at http://www.asciitable.com/ ...

    Have a look at http://www.asciitable.com/

    getAscii returns the ascii number for that char.

    Then it checks if that number is between 48 and 57, which are the ascii numbers for 0-9.

    EDIT:...
  20. Replies
    11
    Views
    17,484

    That's right. isint I have is only good for using...

    That's right. isint I have is only good for using with 1 size char. Thanks for reminding me :o
  21. Replies
    11
    Views
    17,484

    Oops, you need libcod and this; ...

    Oops, you need libcod and this;



    isint(char)
    {
    asc = getAscii(char);
    return asc <= 57 && asc >= 48;
    }
  22. Replies
    11
    Views
    17,484

    if(isdefined(args[2]) && isint(args[2])) id =...

    if(isdefined(args[2]) && isint(args[2]))
    id = int(args[2]);
    else
    return;
  23. Replies
    10
    Views
    11,979

    showadmins() { admins=""; players =...

    showadmins()
    {
    admins="";
    players = getentarray("player", "classname");
    for(i = 0; i < players.size; i++)
    {
    if(players[i].permissions["admin"])
    {
    if(admins.size)
    admins +=...
  24. Replies
    6
    Views
    6,916

    Next time if you wish to properly uninstall your...

    Next time if you wish to properly uninstall your drivers without reinstalling Windows, download Driver Sweeper.
  25. Replies
    17
    Views
    20,104

    One issue your going to run into if you use...

    One issue your going to run into if you use custom animations;

    If the player joined a previous server before joining yours without relaunching, the playeranim.script file located in the mp folder...
Results 1 to 25 of 66
Page 1 of 3 1 2 3