08-24-2016, 04:30 AM
Why didn't someone tell me that I had a bug with the Lycan ABS's paperdoll system!!!!!
Just so you know, it is a single word in each method within my RPG::Cache code beginning around line 460 of the paperdoll script (be it the Story 1 or Story 2 demo you choose)
While the code reads
replace the 'else' statement with the word 'rescue' to look like this...
And do the same for the method below. I'm going to fix this in a replacement upgrade soon. But I'll post this in the meantime. (lousy reason for a bump).
So if you did not see the SHIELD in the Story 1 demo, there ya go. And if you were wondering how Jane fired bullets from her finger instead of from a gun... yep, that's the reason.
Oh, I am updating Story 2. Not insofar as a Lycan ABS upgrade, but I am actually updating the ending. I wasn't happy with the final battle scene. Expect a 'story' bump soon.
IRC Wrote:DerVVulfman: Aaaaarrrrgh!
DerVVulfman: .................... one ...... word.... was all it was
DerVVulfman: ONE EFFIN WORD
BountyHunterLani:
Korekame: Oh, DerVVulfman, the Paperdoll system has a bug when used with the Lycan system.
DerVVulfman: funny
Just so you know, it is a single word in each method within my RPG::Cache code beginning around line 460 of the paperdoll script (be it the Story 1 or Story 2 demo you choose)
While the code reads
Code:
def self.equipment(filename, hue=0)
begin
self.load_bitmap("Graphics/"+Paperdoll::CACHE_DIRECTORY+"/", filename, hue)
else
self.load_bitmap("Graphics/"+Paperdoll::CACHE_DIRECTORY+"/", "", hue)
end
end
Code:
def self.equipment(filename, hue=0)
begin
self.load_bitmap("Graphics/"+Paperdoll::CACHE_DIRECTORY+"/", filename, hue)
rescue
self.load_bitmap("Graphics/"+Paperdoll::CACHE_DIRECTORY+"/", "", hue)
end
end
So if you did not see the SHIELD in the Story 1 demo, there ya go. And if you were wondering how Jane fired bullets from her finger instead of from a gun... yep, that's the reason.
Oh, I am updating Story 2. Not insofar as a Lycan ABS upgrade, but I am actually updating the ending. I wasn't happy with the final battle scene. Expect a 'story' bump soon.