Page 2 of 4

Re: New User--Found Problems

Posted: Thu Apr 19, 2012 12:22 pm
by Deledrius
Yes, that is the culprit. I'm trying to ping branan and find out why it is missing from the build.

Re: New User--Found Problems

Posted: Thu Apr 19, 2012 12:23 pm
by calroger
For Deledrius:
Here is a zip of all the files in log folder.

Cal

Re: Bug Report: Cleft Not Completable

Posted: Thu Apr 19, 2012 12:41 pm
by Tsar Hoikas
Of all the stupid things to break the game.... At least it was an easy fix.

Re: Bug Report: Cleft Not Completable

Posted: Thu Apr 19, 2012 12:42 pm
by Deledrius
Looks like a minor typo was made in the clftImager script when the random seeds problem was being fixed, and this caused the script to fail and be left out of the compiled package the server sends out. The fix has been made (as you can see in Hoikas' post :) ) and a new build will be made soon.

Re: Bug Report: Cleft Not Completable

Posted: Thu Apr 19, 2012 12:43 pm
by johnsojc
Well, everytime I try to PAK a suitcase, I invariably forget to PAK something in it. :lol:

Re: Bug Report: Cleft Not Completable

Posted: Thu Apr 19, 2012 1:24 pm
by Acorn
when the random seeds problem was being fixed
see my post on the gehn7 thread, shroomie is still not random.

Re: Bug Report: Cleft Not Completable

Posted: Thu Apr 19, 2012 2:36 pm
by D'Lanor
Acorn wrote:
when the random seeds problem was being fixed
see my post on the gehn7 thread, shroomie is still not random.
Yeah, they should have put random.seed() under OnServerInitComplete as I said. Not under __init__, which comes before OnFirstUpdate and is therefore just as likely to fail. Makes me wonder if this was even tested during development...

Re: Bug Report: Cleft Not Completable

Posted: Thu Apr 19, 2012 2:54 pm
by johnsojc
Then why does it work on MOULa? I just tried it again and Shroomie appeared after 4 pulls of the feeder lever. Is it a differrence in the Python version? (Time to go look at the original released code from Cyan and see if it's different...)

Edit: MOULa does it a different way but NVM... I'm not qualified to judge the code (as much as I'd like to be able to do so :( ).

Re: Bug Report: Cleft Not Completable

Posted: Thu Apr 19, 2012 2:58 pm
by Tsar Hoikas
If it doesn't work in __init__, then it's not going to work in OnServerInitComplete either as it's using the Win32 urandom-equivalent (some CryptGetRandom function) to seed the RNG.

Re: Bug Report: Cleft Not Completable

Posted: Thu Apr 19, 2012 3:04 pm
by D'Lanor
Tsar Hoikas wrote:If it doesn't work in __init__, then it's not going to work in OnServerInitComplete either as it's using the Win32 urandom-equivalent (some CryptGetRandom function) to seed the RNG.
It does. I actually did test it. (internal H'uru client on MOSS shard btw)