Project Zomboid

Project Zomboid

Customizable Zombies
102件中 81-90 を表示
< 1 ... 7  8  9  10  11 >
更新:2020年2月14日 @ 23時34分

  • Code optimization.

更新:2020年2月14日 @ 23時13分

  • Fixed bug that caused errors at random times.

更新:2020年2月14日 @ 22時58分

  • Added extra utility code.

更新:2020年2月14日 @ 21時43分

  • Code optimization.

更新:2020年2月14日 @ 16時19分

  • Fixed one line of code in the new revamped code that determines what a zombie should be.

更新:2020年2月14日 @ 15時49分

  • Revamped some code.

更新:2020年2月14日 @ 15時35分

  • Fixed bug: "fContents" was not localized so this would cause mod issues amongst any mod that used this variable name.

    It is now localized to the one script to prevent this issue. "local fContents"

更新:2020年2月14日 @ 12時29分

- Some reorganizing of code and some optimization.

更新:2020年2月14日 @ 10時49分

Reverting changes back to an old stable update:

[Update: Feb 12 @ 4:30pm]
- Changed the random number generator. Because of the way floats work and how ZombRandFloat returns floats (known to return Floating Point Errors in some cases), I decided to replaced it with ZombRand.

  • OLD: local rand1 = ZombRandFloat(1, 1000)
  • NEW: local rand1 = ZombRand(1000) + 1

  • 1000 = 100.0%

更新:2020年2月14日 @ 3時00分

- Small optimization fix.