Results 1 to 4 of 4

Thread: [CoD2]Language Information

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #2
    Assadministrator kung foo man's Avatar
    Join Date
    Jun 2012
    Location
    trailerpark
    Posts
    2,018
    Thanks
    2,110
    Thanked 1,086 Times in 753 Posts
    Should be the same order as it is in the binary, the table lookup is just an index of it. Also fits with my CoD version, loc_language = 2, which fits with binary order.

    PHP Code:
        lang = [];
        
    lang[lang.size] = "english";
        
    lang[lang.size] = "french";
        
    lang[lang.size] = "german";
        
    lang[lang.size] = "italian";
        
    lang[lang.size] = "spanish";
        
    lang[lang.size] = "british";
        
    lang[lang.size] = "russian";
        
    lang[lang.size] = "polish";
        
    lang[lang.size] = "korean";
        
    lang[lang.size] = "taiwanese";
        
    lang[lang.size] = "japanese";
        
    lang[lang.size] = "chinese";
        
    lang[lang.size] = "thai";
        
    lang[lang.size] = "leet";
        
    lang[lang.size] = "czech"
    timescale 0.01

  2. The Following 2 Users Say Thank You to kung foo man For This Useful Post:

    filthy_freak_ (10th May 2015),Ni3ls (9th May 2015)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •