Latest revision bugs

Report bugs, errors and balance issues you may encounter ingame here.

Moderator: Developers

User avatar
Zefz
Squirrel Knight (Administrator)
Squirrel Knight (Administrator)
Posts: 3820
Joined: Wed Jul 23, 2008 1:27 am
Location: Norway
Contact:

Post by Zefz »

It seems that Z movement doesn't work for particles in rev1092. This causes particles such as blood and raindrops never to hit ground/water therefore never despawning.
User avatar
Zefz
Squirrel Knight (Administrator)
Squirrel Knight (Administrator)
Posts: 3820
Joined: Wed Jul 23, 2008 1:27 am
Location: Norway
Contact:

Post by Zefz »

Line 2084 and 2339 in particle.c seem a bit contradictory:

Code: Select all

if( (tmp_pos.x != tmp_pos.x) || (tmp_pos.y != tmp_pos.y) || (tmp_pos.z != tmp_pos.z) )
This statement can never be true?

I take it it's supposed to be

Code: Select all

if( (pprt->pos.x != tmp_pos.x) || (pprt->pos.y != tmp_pos.y) || (pprt->pos.z != tmp_pos.z) )
Which corrects the particle movement problem stated above.
bgbirdsey
{]-[0{0|307 (Developer)
{]-[0{0|307 (Developer)
Posts: 1864
Joined: Wed Jul 23, 2008 4:22 am
Location: Minnesota, USA

Post by bgbirdsey »

you are correct, sir!
User avatar
octagon
Darkshine Knight (Extremist fanatic)
Darkshine Knight (Extremist fanatic)
Posts: 2589
Joined: Sat Feb 20, 2010 1:07 pm

Post by octagon »

More annoying bugs :/

-After you went into standby without pausing before, text sprites are messed up:
Image
-Characters don't save when save&exiting Zippy. Well, they do in the AppData folder, but ingame, the char is the way they were before entering Zippy.
-If you go criminal in Zippy, guards kill each other and make a massacre among sheeps. Oh, and the first people they kill are always the Shopkeepers. Also, the Shepherds are suicidal and attack everyone, even mighty mages or heavily-armored warriors, with bare hands.
-Every damage to humanoid enemies like mercenaries, even it's insta-killing them, is considered Ticklish, but you can deal Powerful, Crippling, Devastating, Epic, Heroic or Divine damage to Grubbies with a Lvl 1 adventurer with a TOILET PLUNGER. wtf?
-Mim and Brom get stuck in invisibe walls in Adventurer Starter. And they don't get the idea to jump. Also, Brom attacks the gelfeet and doesn't stop chasing it after entering its room. He doesn't follow you, but focuses on the gelfeet for eternity.
-Mim sometimes heals grubbies or even worse, trogs.
-You can't leave the Gelfeet anymore, but are digested inevitably.
-Sometimes, items become invisible. However, you can still grab and grab-overview them.
-When I had some other programs open and tried to switch to Egoboo after loading Zippy, my PC had a fricking BSOD. Dunno if this is caused by Egoboo... but I never had a bluescreen before, so it looks like.

Sadly, these seem serious obstacles to the release to me :(
User avatar
Zefz
Squirrel Knight (Administrator)
Squirrel Knight (Administrator)
Posts: 3820
Joined: Wed Jul 23, 2008 1:27 am
Location: Norway
Contact:

Post by Zefz »

That garbled text problem seems something from your OS or SDL_ttf and is not caused by Egoboo. Or maybe some offset values are being incorrectly set upon standby. (hibernation?)

We know the characters incorrectly export at the moment.

I will take a look at Brom and Mim's AI.
bgbirdsey
{]-[0{0|307 (Developer)
{]-[0{0|307 (Developer)
Posts: 1864
Joined: Wed Jul 23, 2008 4:22 am
Location: Minnesota, USA

Post by bgbirdsey »

Now, most of the textures will be reloaded if you minimize the screen and maximize it, but maybe the font won't be? That would explain this problem.
User avatar
Zefz
Squirrel Knight (Administrator)
Squirrel Knight (Administrator)
Posts: 3820
Joined: Wed Jul 23, 2008 1:27 am
Location: Norway
Contact:

Post by Zefz »

Fixed AI issues with Brom and Mim.
Fixed bug where you could not escape the Gelfeet.
Fixed some issues with jumping. Should now be easier and more smooth like before.

I will take a look at the criminal script code for Zippy and Bishopia.
User avatar
penguinflyer5234
Sheep (Developer)
Sheep (Developer)
Posts: 3025
Joined: Wed Jul 23, 2008 1:39 am
Location: Best Southwest

Post by penguinflyer5234 »

I have found my problem with not finding basicdat.
it was cutting off the first / in /home/...
...
User avatar
Zefz
Squirrel Knight (Administrator)
Squirrel Knight (Administrator)
Posts: 3820
Joined: Wed Jul 23, 2008 1:27 am
Location: Norway
Contact:

Post by Zefz »

A simple enough change in the code?
User avatar
penguinflyer5234
Sheep (Developer)
Sheep (Developer)
Posts: 3025
Joined: Wed Jul 23, 2008 1:39 am
Location: Best Southwest

Post by penguinflyer5234 »

It's a simple hack but I dunno what happens in Win/Mac...

(gcc 4.4.1-4ubuntu9) rev1095 with rev1090 data

MEMORY PROBLEMS! (for instance I can only move down, even while pressing up)

Also the left and right buttons act as the camera rotating buttons (the normal ones work fine though), rotating the camera right makes the screen go dark and then the ground, particles and status bars are the only things rendering!? Zoom buttons don't work... picking up stuff seems to be random? (A Key Mim A Key Mim A Key Mim A Key Mim... until I picked it up >_<) Mim approves of book burning! (even though she's still dancing with the Gelfeet lol) screenshots apparently don't save :/
Spoiler: I hit the 6 button on accident :(
Image
...
User avatar
Agent of Dread
Protector (Senior Member)
Protector (Senior Member)
Posts: 8991
Joined: Wed Jul 23, 2008 8:46 pm
Location: Australia
Contact:

Post by Agent of Dread »

Damn your window border is awesome. Is it KDE-exclusive?
- Linktree: linktr.ee/trilbs -
User avatar
penguinflyer5234
Sheep (Developer)
Sheep (Developer)
Posts: 3025
Joined: Wed Jul 23, 2008 1:39 am
Location: Best Southwest

Post by penguinflyer5234 »

if there's a Oxygen style for GNOME/XFCE, then no :P
...
User avatar
octagon
Darkshine Knight (Extremist fanatic)
Darkshine Knight (Extremist fanatic)
Posts: 2589
Joined: Sat Feb 20, 2010 1:07 pm

Post by octagon »

Zefz wrote:Fixed AI issues with Brom and Mim.
Fixed bug where you could not escape the Gelfeet.
Fixed some issues with jumping. Should now be easier and more smooth like before.

I will take a look at the criminal script code for Zippy and Bishopia.
Thank you very much. Playability, I see you again!! :D
User avatar
Zefz
Squirrel Knight (Administrator)
Squirrel Knight (Administrator)
Posts: 3820
Joined: Wed Jul 23, 2008 1:27 am
Location: Norway
Contact:

Post by Zefz »

penguinflyer5234 wrote:It's a simple hack but I dunno what happens in Win/Mac...
Gimme a diff file or the like on the minor "hack" so I can test whatever happens on windows.
penguinflyer5234 wrote: Also the left and right buttons act as the camera rotating buttons (the normal ones work fine though)
This is not a bug. This happens because the Auto Camera Mode is set to Fast instead of just Enabled. This can be changed in the general Game Settings.
penguinflyer5234 wrote: MEMORY PROBLEMS! (for instance I can only move down, even while pressing up)

rotating the camera right makes the screen go dark and then the ground, particles and status bars are the only things rendering!? Zoom buttons don't work... picking up stuff seems to be random? (A Key Mim A Key Mim A Key Mim A Key Mim... until I picked it up >_<) Mim approves of book burning! (even though she's still dancing with the Gelfeet lol) screenshots apparently don't save :/
Whoa! That is a lot of problems. Hopefully because of the same error!

------------

Also, I think I fixed the problems with going Criminal in Zippy town.
User avatar
octagon
Darkshine Knight (Extremist fanatic)
Darkshine Knight (Extremist fanatic)
Posts: 2589
Joined: Sat Feb 20, 2010 1:07 pm

Post by octagon »

Moar bug report comments from me ahoy:

*The healers are always considered those who burn a book regardless of they actually burned it, if any healers are present.
*My zoom and rotation buttons work well.
*Picking up works good for me, but your hand must be directly over the item in question.
Post Reply