Jump to content

Lauren

Community Leader
  • Content count

    729
  • Joined

  • Last visited

Everything posted by Lauren

  1. Yes, the lightning draw needs a start and end point and doesn't really behave as you described, which is why I haven't suggested it.
  2. The problem would still be that the sine wave would never collapse with Madin's method. The most helpful method would probably to create a custom shader as a laser fx (a custom shader for a particle system which uses gpu draw could work too).
  3. Lauren

    Has anyone seen this Global War: Generals

    Probably based on the african warlord faction which later evolved to be the GLA.
  4. Lauren

    Has anyone seen this Global War: Generals

    This looks like they want to base it off a mod which turned its unit power up to 11. Seems quite retarded.
  5. Lauren

    Windows 10 Game Mode

    Seriously, it's not like they had hundreds of cryptic lines in them. I was < 10 years old at the time and I modified these files to optimize for some games. I'm not even a native English speaker (didn't learn English in school until I was ~12). Memorizing a few lines and what they do which even a <10 year old can is not really a skill.
  6. Lauren

    Windows 10 Game Mode

    "boot disk hacking skills" lulz
  7. Lauren

    Windows 10 Game Mode

    Try a pcie ssd. Much faster than anything sata can do. Also loading data isn't everything. There's actually next to no gain for many games but for some loading screens which are here and there. "I was a little bit bummed out to discover" Seriously? You buy a pc and have no idea what's in it? Also @Doctor Destiny it's obvious, a single hdd cannot even nearly reach the limit of sata's bandwidth. A ssd can. So he is basically right, but still stupid for even making the comment.
  8. Did you add the skirmish players?
  9. No there isn't, there was just a bugfix in newer versions. That's completely wrong, check the first line in the skudef.
  10. Lauren

    Windows 10 Game Mode

    purple win32 has nothing to do with 32 or 64 bit.
  11. Lauren

    Star Wars Episode VIII: The Last Jedi

    Keep in mind Jedi is both singular and plural. Jedi can mean both Luke and Rey.
  12. Completely different as nmenth said, the red lyrium in the background has much more similarities in structure than tiberium (it also mutates people)... still no tiberium.
  13. Lauren

    C&C reboot?

    That's what everyone told you, but you didn't want to listen.
  14. Indeed order is important. It's usually (iirc) first attributes, then elements, then attributes with length !=4
  15. Yes it's that simple. And no you don't have to set any references, the program just loads the entire folder.
  16. Lauren

    Rogue One: A Star Wars Story

    I saw it yesterday and I really liked it. Music felt weird at first but later it all came together. Also the most awesome last 5-10 minutes in a movie ever!
  17. Lauren

    Why C&C4 was a bad game?

    Imo it wasn't a bad game in itself. It just wasn't a C&C. @Ravendark: yes looking through some files C&C4 really is quite interesting for modding.
  18. public static uint GetHash(string input) { if (input.Length == 0) { return 0u; } if (IsHexNumber(input)) { return uint.Parse(input.Substring(2), NumberStyles.HexNumber); } byte[] buffer = new byte[input.Length]; BufferWriter.WriteString(buffer, 0, input); uint hash; int numBlocks = buffer.Length >> 2; int extra = buffer.Length % 4; hash = (uint)buffer.Length; int idy = 0; for (int idx = numBlocks; idx != 0; --idx) { hash += (uint)(buffer[idy + 1] << 8 | buffer[idy]); hash ^= ((uint)(buffer[idy + 3] << 8 | buffer[idy + 2]) ^ (hash << 5)) << 11; hash += hash >> 11; idy += 4; } if (extra != 0) { switch (extra) { case 1: hash += buffer[idy]; hash = (hash << 10) ^ hash; hash += hash >> 1; break; case 2: hash += (uint)(buffer[idy + 1] << 8 | buffer[idy]); hash ^= hash << 11; hash += hash >> 17; break; case 3: hash += (uint)(buffer[idy + 1] << 8 | buffer[idy]); hash ^= (hash ^ (uint)(buffer[idy + 2] << 2)) << 16; hash += hash >> 11; break; } } hash ^= hash << 3; hash += hash >> 5; hash ^= hash << 2; hash += hash >> 15; hash ^= hash << 10; return hash; }
  19. The number is the same as basically every sage game uses the same hashing algorithm.
  20. It would only crash if you end up with 2 overlapping structures. But in any case it's recommended to go structure -> unit -> structure for pathfinding reasons.
  21. So far it's just random bs
  22. Lauren

    Desktop CPU Thread

    32 bit you say? Is it 1990 already?
  23. Lauren

    Why I gave up Firefox for Opera

    Atm I use Vivaldi, it's an Opera offshoot which is a lot more customizable.
×