lol, gone
Um. When i try to perform DETECT, can't see the command in words but when i choose a blank square, it happens. And then a window pops up with no information. Just a blank. I think it might be a font error.
Try the RMXP FAQ, I will take a look at the code later. I might have forgotten to add the font fix in some of the windows...
*updates*
I seem to be having the same problem. A screen pops up when I use my Analyze skill, but I can't read the text. I am a complete noob, and am only able to do copy and paste scripting at this time, so I can't fix the problem. If you could fix the problem and update your code I would be really grateful.
Try version 1.21b. I forgot my universal font fix. (^__^')
It works in battle now. Thanks for that. Im using both the analyze and the bestiary scripts. Is there a way to view all the information on monsters you have 'Analyzed', when not in battle?
Use the call script event command and put this into it:
$scene = Scene_Bestiary.new
This will call the Bestiary. If you want to add only "analyzed" monsters to the Bestiary, you need to change a value in the configuration. I haven't taken a look at those scripts for quite some time, so I can't remember exactly which one, but I've typed it down in the instructions of the Bestiary, so you should be able to find it easily.
I dont know Blizzard, it looks kinda bland to me :P
Can you add the rest of the stats including;
Item Drop and %
Elemental Resistances/Weaknesses
and maybe some little stuff like how many times killed, thatd be cool. :)
O_o It DOES have the drop rate/elemental resistances + weaknesses/status resistances + weaknesses. You can even disable some of them if you want or just make it inanalyzable (sp?) for certain enemies. Have you tried pressing UP/DOWN during the time the window is displayed? xD
I wouldn't call it Advanced if I've had put in only a few basics, lol! BTW, I can't add a counter how many times the enemy was killed, because there is no built-in counter in for that in RMXP.
Quote from: Blizzard on February 27, 2007, 11:13:17 AM
O_o It DOES have the drop rate/elemental resistances + weaknesses/status resistances + weaknesses. You can even disable some of them if you want or just make it inanalyzable (sp?) for certain enemies. Have you tried pressing UP/DOWN during the time the window is displayed? xD
I wouldn't call it Advanced if I've had put in only a few basics, lol! BTW, I can't add a counter how many times the enemy was killed, because there is no built-in counter in for that in RMXP.
ok ok lol, I didnt actually try pressing up/down ... lol.
Aah well, you'd have to use a lot of variables for the kill counter...
how can i create an item tath use te analize sistem? (same as magic lens in tales of phantasia)
How do I make an enemy's HP or SP appear as '????'?
Change these lines:
self.contents.draw_text(x_offset, 32, 256, 32, _HP)
self.contents.draw_text(x_offset, 64, 256, 32, _SP)
to these:
self.contents.draw_text(x_offset, 32, 256, 32, "???")
self.contents.draw_text(x_offset, 64, 256, 32, "???")
That works with all enemies... I only want it to work with certain ones...
Then change
self.contents.draw_text(x_offset, 32, 256, 32, _HP)
self.contents.draw_text(x_offset, 64, 256, 32, _SP)
to this instead:
if [ID1, ID2, ID3].include?(enemy.id)
self.contents.draw_text(x_offset, 32, 256, 32, "???")
self.contents.draw_text(x_offset, 64, 256, 32, "???")
else
self.contents.draw_text(x_offset, 32, 256, 32, _HP)
self.contents.draw_text(x_offset, 64, 256, 32, _SP)
end
In the array [ID1, ID2, ID3] include all enemy IDs (separate them with commas) which will have ??? instead of the values.
Thanks :D That works perfect now
Sorry for double post...
But is there a way I can make two analyze skills? One that analyzes as normal... and one that analyzes statsas numbers even when the first skill has been told to show them as '???'?
If you get my drift...
Quote from: Rune on April 21, 2007, 03:46:08 PM
Sorry for double post...
But is there a way I can make two analyze skills? One that analyzes as normal... and one that analyzes statsas numbers even when the first skill has been told to show them as '???'?
If you get my drift...
blizz is off rmrk, please check his profile for a way to contact him on his, or wait for another scripter to help.