Flash Flash Revolution

Flash Flash Revolution (http://www.flashflashrevolution.com/vbz/index.php)
-   Bug Reports and Suggestions (http://www.flashflashrevolution.com/vbz/forumdisplay.php?f=15)
-   -   Bugs that don't deserve their own thread (http://www.flashflashrevolution.com/vbz/showthread.php?t=120849)

#_# 07-12-2016 03:58 PM

Re: Bugs that don't deserve their own thread
 
Scores on rates stopped recording for me since the engine update, except for Yoshi's Cookie, apparently.


















DissonantMuse 07-14-2016 11:24 PM

Re: Bugs that don't deserve their own thread
 
Quote:

Originally Posted by #_# (Post 4452874)
Scores on rates stopped recording for me since the engine update, except for Yoshi's Cookie, apparently.


















Expanding on this bug since I've seen some odd issues with this as well, it apparently only happens with FCs but only certain songs. If I intentionally get misses it doesn't error.

(these are just mashed scores for accumulating GT)




Also I forgot to mention it only errors on certain rates as well because when I turn it down to 1.2x and FC it saves the score.


Dinglesberry 07-18-2016 12:52 PM

Re: Bugs that don't deserve their own thread
 
Quote:

Originally Posted by DissonantMuse (Post 4453796)
Expanding on this bug since I've seen some odd issues with this as well, it apparently only happens with FCs but only certain songs. If I intentionally get misses it doesn't error.

(these are just mashed scores for accumulating GT)




Also I forgot to mention it only errors on certain rates as well because when I turn it down to 1.2x and FC it saves the score.


Bro its cause they knew you were hacking, playing VS Boss Battle on 1.4x...

Like, get da hell outta here o_O

bmah 07-24-2016 10:46 PM

Re: Bugs that don't deserve their own thread
 
Suggestion: increase the character limit for song titles, artist names, and song genres, for both website and as presented on the game itself. Song titles in particular need this. If required, increase the font size in the game.

Frans813 07-25-2016 06:45 AM

Re: Bugs that don't deserve their own thread
 
Quote:

Originally Posted by DissonantMuse (Post 4453796)
Expanding on this bug since I've seen some odd issues with this as well, it apparently only happens with FCs but only certain songs. If I intentionally get misses it doesn't error.

(these are just mashed scores for accumulating GT)
http://i.imgur.com/8jXBRyz.png

http://i.imgur.com/hmMal6f.png

Also I forgot to mention it only errors on certain rates as well because when I turn it down to 1.2x and FC it saves the score.

http://i.imgur.com/TGz443I.png

https://youtu.be/HMUDVMiITOU?t=19s

Mourningfall 07-25-2016 09:20 PM

Re: Bugs that don't deserve their own thread
 
Ey, I can't seem to connect to Multiplayer, is it down or is it just me?

Edit: it's working again nevermind, thankyou if you did anything :){

PrawnSkunk 07-25-2016 09:21 PM

Re: Bugs that don't deserve their own thread
 
Quote:

Originally Posted by Mourningfall (Post 4457131)
Ey, I can't seem to connect to Multiplayer, is it down or is it just me?

Multiplayer servers should be up now.

DissonantMuse 07-25-2016 09:32 PM

Re: Bugs that don't deserve their own thread
 
Quote:

Originally Posted by Dinglesberry (Post 4454670)
Bro its cause they knew you were hacking, playing VS Boss Battle on 1.4x...

Like, get da hell outta here o_O

It's pretty easy to mash through even with rates but 1.4 is the fastest I can usually mash FC. btw bump, this rate bug still occurs. It's not a big issue it's just nice to accumulate GT a bit faster than before, and it's such a random error and only on certain songs. But again it's only with FC's usually so GT whoring is still pretty easy if you just fail out before FCing lol

Mourningfall 07-31-2016 06:05 PM

Re: Bugs that don't deserve their own thread
 
Noticed "Yukitsuki-Yashou"'s audio file cuts off in the first 100 notes, identical situation to Call upon the seaponies. I'll make a note if I find any others

rayword45 08-2-2016 01:24 AM

Re: Bugs that don't deserve their own thread
 
can u guys fix the rates thing or is this gone?

bc if it is fuck my timing in life lol

Spenner 08-2-2016 02:45 AM

Re: Bugs that don't deserve their own thread
 
Crickets. Crickets don't deserve their own thread.

PrawnSkunk 08-2-2016 02:57 AM

Re: Bugs that don't deserve their own thread
 
Quote:

Originally Posted by rayword45 (Post 4460043)
can u guys fix the rates thing or is this gone?

bc if it is fuck my timing in life lol

I apologize, I haven't been able to find the time to investigate this reported bug. :( I've been caught up with final projects and exams as I enter the last two weeks of my semester. I'll investigate this as soon as I can!

Dinglesberry 08-2-2016 07:33 PM

Re: Bugs that don't deserve their own thread
 
The song "Call Upon the Seaponies (EuroSHOOBEDOO Mix) has its sound cut out at approx. 48 notes or so, I don't think it comes back, haven't played the rest of the song.. unless its intentional?

Azpb Djbread 08-2-2016 08:34 PM

Re: Bugs that don't deserve their own thread
 
If you use the minestorm skin in the R3 Engine, the left receptor jitters and bugs out everywhere.

Also, if you go to the velocity or legacy engine and put a negitive number in the offset, the song will go on forever and will have no steps.
0....

Zapmeister 08-6-2016 06:03 PM

Re: Bugs that don't deserve their own thread
 
well done to the velocity engine for rendering 0x69 as "105"

(for those who don't get it, 0x before a number in compsci-speak means you want the number to be hexadecimal, and 69 in hex is 105 in decimal. but how did the engine confuse the string "0x69" with int(0x69) ?! )

pic

edit: results screen too

Velocity 08-6-2016 06:12 PM

Re: Bugs that don't deserve their own thread
 
Quote:

Originally Posted by Zapmeister (Post 4461708)
well done to the velocity engine for rendering 0x69 as "105"

(for those who don't get it, 0x before a number in compsci-speak means you want the number to be hexadecimal, and 69 in hex is 105 in decimal. but how did the engine confuse the string "0x69" with int(0x69) ?! )

pic

It's a common issue with the engine.

It mostly comes from the parsing of the playlist where certain things are strings and certain things are numbers. But because flashvars doesn't contain the type and I was really bad at writing simple stuff long ago, all song variables are passed though a isNaN() then either Number() or nothing to convert the correct strings to numbers.

Code:

var songData = new Array();
for (var x = 0; x < songnodes.childNodes[a].childNodes.length; ++x) {
        var songnode = songnodes.childNodes[a].childNodes[x];
        songData[songnode.nodeName] = (isNaN(songnode.firstChild.nodeValue) ? String(songnode.firstChild.nodeValue) : Number(songnode.firstChild.nodeValue));
}
               
songData.songname = String(songData.songname);



This fails on song names as some happen to be perfectly valid numbers, and Number() can interpret "0x" enough to determine it's hex and display "correctly".

TL;DR:
I check things too basically and doesn't stop edge cases. Woops.

Dinglesberry 08-6-2016 07:48 PM

Re: Bugs that don't deserve their own thread
 
Velocity pls

Velocity 08-7-2016 04:27 AM

Re: Bugs that don't deserve their own thread
 
Quote:

Originally Posted by Dinglesberry (Post 4461737)
Velocity pls

That was during a time where less code > correct code.

I don't do that much anymore.

I think.

sickufully 08-16-2016 04:41 AM

Re: Bugs that don't deserve their own thread
 
Look at difficulties.

RenegadeLucien 08-18-2016 12:28 AM

Re: Bugs that don't deserve their own thread
 
this doesn't seem quite right



(the score was 5-0-1-1. i get that you need to FC to unlock the token but that should probably be reflected in the token description since non-FC SDGs are marked as SDGs)


All times are GMT -5. The time now is 10:55 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright FlashFlashRevolution