Bug Report: Teledahn

Announcements and discussion regarding the Gehn CWE Shard.

Moderator: Gehn Shard

Post Reply
Ron Landry
Posts: 69
Joined: Fri Feb 10, 2012 4:19 pm
MOULa KI#: 10215645
Location: Germany

Re: Bug Report: Teledahn

Post by Ron Landry »

johnsojc wrote:
Gee, I haven't seen Shroomie for over 42 years,,,,

Jep. Same as me.
... and so I close realising that perhaps ... the ending ... has not yet been written.
returned to the cavern as
MOULa KI#10215645 Ovaron / Gehn Shard KI#582269 Ovaron2
User avatar
janaba
Posts: 918
Joined: Sun Feb 05, 2012 3:27 pm
MOULa KI#: 0
Location: Berlin, Germany

Re: Bug Report: Teledahn

Post by janaba »

Found an official link to the Elf Viewer ... the good things are oftentimes just around the
corner lol ... So, everyone interested can get it on the 'GoW Wiki', please, follow this link ...
You can of course keep downloading it from my MediaFire link above ... :P
Image
Ron Landry
Posts: 69
Joined: Fri Feb 10, 2012 4:19 pm
MOULa KI#: 10215645
Location: Germany

Re: Bug Report: Teledahn

Post by Ron Landry »

8-) elf viewer is still available in the Guild of Writers Wiki ! Look here :D

Uuups Janaba. You where 1 minute quicker .... ;)
Last edited by Ron Landry on Tue Mar 13, 2012 5:43 pm, edited 1 time in total.
... and so I close realising that perhaps ... the ending ... has not yet been written.
returned to the cavern as
MOULa KI#10215645 Ovaron / Gehn Shard KI#582269 Ovaron2
Tsar Hoikas
Councilor of Technical Direction
Posts: 2180
Joined: Fri Nov 16, 2007 9:45 pm
MOULa KI#: 23335
Location: South Georgia
Contact:

Re: Bug Report: Teledahn

Post by Tsar Hoikas »

For what it's worth, I'm not completely convinced that we're saving SDL states correctly, but I don't think that's the issue here. Simple integer and boolean fields seem to be working as expected, AFAICT. :? I've only noticed problems with the physical SDL states. At some point, I'm going to put together some kind of spade that will allow us to visualize saved states and make sure everything is sane.
Image
User avatar
Wamduskasapa
Posts: 943
Joined: Fri Apr 30, 2010 6:56 am
MOULa KI#: 0
Contact:

Re: Bug Report: Teledahn

Post by Wamduskasapa »

Deledrius wrote:PlasmaShop can view elfs.


I have both Plasmashop 2 & 3. 3 is the one asking for the MOUL/MQO encryption key
Computer = MotherBoard MSI X99S GAMING 7 - Intel I7-6950X
Dual MSI GeForce GTX 1080
64GB Kingston HyperX DDR4 Predator Memory
Dual Samsung 1TB SSD Pro - Dual Seagate 4TB SSHD
Excelvan 5.25" Multi-Function Media Dashboard
johnsojc
Posts: 246
Joined: Sun Dec 07, 2008 10:27 am

Re: Bug Report: Teledahn

Post by johnsojc »

It seems that this is the piece of script we can't get past:

Code: Select all

    def WillShroomieBeSeen(self,probability):
        randnum = whrandom.randint(0,100)
       
        #~ print "randnum = ",randnum,"probability = ", probability*100
       
        if randnum < (probability*100):
            print "\t Shroomie WILL be seen."
            return true
        else:
            print "\tShroomie WON'T be seen."


I never see the "Shroomie WILL be seen" log entry. If I'm understanding the code correctly, probability is either .10 or .25. The only way this routine could fail every time is if randnum is always > 25.
User avatar
janaba
Posts: 918
Joined: Sun Feb 05, 2012 3:27 pm
MOULa KI#: 0
Location: Berlin, Germany

Re: Bug Report: Teledahn

Post by janaba »

I just thought that the whole logs might be helpful for our precious programmers/coders to find more than
within those parts posted here by us, as Branan said that 'Shroomie is controlled entirely client-side' ...
On the Minkata shard I've met her on the Gehn shard I didn't ...

This is the Minkata Python.0.log and this is the Gehn Python.0.elf file ... Enjoy, if you like ... :)
Image
johnsojc
Posts: 246
Joined: Sun Dec 07, 2008 10:27 am

Re: Bug Report: Teledahn

Post by johnsojc »

OK. Persistence pays off. The Tsar is vindicated and the code does work. I just saw Shroomie way off in the distance. Here is the log to prove it.
I added a 2nd sighting at the medium distance....

Code: Select all

(03/13 22:04:18) tldnShroomieBrain: Shroomie was last seen1331669051 seconds ago.
(03/13 22:04:18)    Shroomie CAN be seen.
(03/13 22:04:18)     Shroomie WILL be seen.
(03/13 22:04:18) tldnShroomieBrain: The Power Tower is down, so Shroomie isn't scared by the noise.
(03/13 22:04:18) tldnShroomieBrain: whichbehavior = 2 NearOrFar = Far
(03/13 22:04:18) target code:target = SpawnFar05.sceneobject.getKey()
(03/13 22:04:18) tldnShroomieBrain: Shroomie has been seen1times.
(03/13 22:09:14) tldnShroomieBrain: Shroomie was last seen296 seconds ago.
(03/13 22:09:14)    Shroomie CAN be seen.
(03/13 22:09:14)    Shroomie WON'T be seen.
(03/13 22:21:26) tldnShroomieBrain: Shroomie was last seen1028 seconds ago.
(03/13 22:21:26)    Shroomie CAN be seen.
(03/13 22:21:26)     Shroomie WILL be seen.
(03/13 22:21:26) tldnShroomieBrain: The Power Tower is down, so Shroomie isn't scared by the noise.
(03/13 22:21:26) tldnShroomieBrain: whichbehavior = 3 NearOrFar = Mid
(03/13 22:21:26) target code:target = SpawnMid05.sceneobject.getKey()
(03/13 22:21:26) tldnShroomieBrain: Shroomie has been seen2times.
Last edited by johnsojc on Tue Mar 13, 2012 7:46 pm, edited 2 times in total.
User avatar
Branan
Gehn Shard Admin
Posts: 694
Joined: Fri Nov 16, 2007 9:45 pm
MOULa KI#: 66990
Location: Portland, OR

Re: Bug Report: Teledahn

Post by Branan »

Wamduskasapa wrote:
Deledrius wrote:PlasmaShop can view elfs.


I have both Plasmashop 2 & 3. 3 is the one asking for the MOUL/MQO encryption key


It's the first 32 digits of PI: 31415926535897932384626433832795
Image
Your friendly neighborhood shard admin
User avatar
Wamduskasapa
Posts: 943
Joined: Fri Apr 30, 2010 6:56 am
MOULa KI#: 0
Contact:

Re: Bug Report: Teledahn

Post by Wamduskasapa »

Branan wrote:
Wamduskasapa wrote:
Deledrius wrote:PlasmaShop can view elfs.


I have both Plasmashop 2 & 3. 3 is the one asking for the MOUL/MQO encryption key


It's the first 32 digits of PI: 31415926535897932384626433832795

. . . That did it
Image
On bended knee - I thank thee
Computer = MotherBoard MSI X99S GAMING 7 - Intel I7-6950X
Dual MSI GeForce GTX 1080
64GB Kingston HyperX DDR4 Predator Memory
Dual Samsung 1TB SSD Pro - Dual Seagate 4TB SSHD
Excelvan 5.25" Multi-Function Media Dashboard
Post Reply

Return to “Gehn Shard”