xxultimaxx
Member-
Content Count
36 -
Joined
-
Last visited
About xxultimaxx
-
Rank
Member
Profile Information
-
Gender
Male
-
Interests
Golfing, playing guitar, reading, and... RMXP of course!
Engines
-
Prefered Engine
RPG Maker XP
-
Engine Level
Good
-
Class Title
Level Designer
-
Can anyone help modify this level and stat breaking script?
xxultimaxx replied to djskagnetti's topic in Requests
Have you tried to change the $FINAL_LVL constant and final_level method? #---------------------------------------------------------------------------- # here you can set the max hp,sp,,str,dex,agi and int #---------------------------------------------------------------------------- $FINAL_LVL = 100 $MAX_HP = 99999 $MAX_SP = 99999 $MAX_STR = 9999 $MAX_DEX = 9999 $MAX_AGI = 9999 $MAX_INT = 9999 def final_level # here you can set the max level for your characters based on their ID's... # i set it so that 3 characters have different levels and the rest # have max lvl of 9999 # # this settings is only to show you how to change the max setting for your # characters... same thing is for the parameters -> hp,sp,str,dex.agi,int case self.id when 1 level = 100 when 2 level = 100 when 8 level = 100 else level = $FINAL_LVL end return level end Try changing the 100s to 999s and see if that helps. -
I could look it over this weekend if that works. No luck... sorry.
-
Add Elemental Gem to Weapons and Armors
xxultimaxx replied to xxultimaxx's topic in Archived RPG Maker XP Scripts (RGSS1)
Previously, while selecting elemental gems to equip, the element images did not convey what level of protection would occur if the gem was equipped or unequipped. Well, in the new version 1.1, I hope I have corrected this and made the system more intuitive for players of your game. If any errors occur or something appears as it should not, please post the issue and I will do my best to resolve it. I hope you like the improvement! Also, I decided to delete the Script section. I feel that errors on my part will be reduced that way, and it should be quite easy to import the scripts from the demo to your game. -
Add Elemental Gem to Weapons and Armors
xxultimaxx replied to xxultimaxx's topic in Archived RPG Maker XP Scripts (RGSS1)
Thank you neiljwd for pointing out the error. Completely forgot to update the Script section of the post, but it should be good now. And, welcome to the world of RMXP! I hope you find it to be an enjoyable and rewarding experience : ) -
Check this out: Leon's Encounter-List changer
-
Well, I have made progress with the World Map, and it is almost what I want. But, there is one small problem I hope someone with scripting experience can help me with. The problem involves a cutback to the previous map before fading out and making the transition to the new map. I would like it to fade to black while the World Map is the current scene and then transition to the new map. Resolved quite easily with this code: $game_screen.start_tone_change(Tone.new(-255,-255,-255,0), 20)
-
So I am finally making some progress with my game, and now find myself with the dilemma of how to have the player traverse from locale to locale. I like the way Final Fantasy 10 has a world map where the player can make a selection from a list of locations and then be transported there. I am posting an image of the concept below: So I guess I am looking for some discussion on the best way to implement this type of world map system. Would a script be most effective, or perhaps it could be accomplished with events? How could one go about actually doing this? Thanks for the insights!
-
No problem : ) I will try my best to help you get it exactly like you want it.
-
Not sure if this is exactly what you want, but maybe it is a start. Just place it above Main in your scripts. It will make a window pop up when casting a skill. The window shows the user's name and the skill name used, along with the skill's description. So, you can modify the description part in the Database to have it show what you want it to say. About the other parts: Showing if the skill was effective or not may be a bit redundant as damage is incurred and shown if a hit occurs and setting a state animation shows success as well. I feel confident that I could implement something though if those methods do not work, but you will have to make it extremely clear what exactly it should look like and do. For example, it would be possible for the word "Effective!" to display near the battler if a state change is imparted. I would try to limit how much information is shown at once because of how quickly it disappears and how battle flow can be affected with prolonged window displays. Just let me know if this is anywhere close to what you need or what changes should be made. Perhaps posting a screenshot of exactly what you need could improve the chances of getting it the way you like it.
-
Add Elemental Gem to Weapons and Armors
xxultimaxx replied to xxultimaxx's topic in Archived RPG Maker XP Scripts (RGSS1)
Had to make a small edit to the script. An error would occur if an Enemy attempted to attack during battle (something like Game_Enemy doesn't have xx_element_set). I could have sworn I put an Actor check in for attack_effect, but I guess I only thought about it and then forgot. Whoops! Anyway, the demo has been fixed and should be good. But, if anyone runs into any problems while using it, please let me know. -
You may be able to do something like this in parts of the scripts that determine battle action: e.g. in Scene_Battle if @active_battler == $data_actors[id] do something end Hopefully, that will get you on track. Not exactly sure what you are going for, though. I think you would most likely edit Scene_Battle, Sprite_Battler, or Game_Battler. If you could possible give a specific example, maybe I could help more and identify what you need to do.
-
There is a great quote I heard about golfing: "Golf incorporates two great American pasttimes; taking long walks and hitting things with sticks." Ha!
-
Add Elemental Gem to Weapons and Armors
xxultimaxx replied to xxultimaxx's topic in Archived RPG Maker XP Scripts (RGSS1)
I completely forgot about putting the script into code format :sweatdrop: Thanks for the reminder, kellessdee. I'd also like to thank you for your previous help with adding the luck attribute; it really allowed me to be able to understand how this script may be possible. So, thanks again! About the picture files, I have been able to view them from various devices from my home. So I cannot see the problem from my end. I am new to using Dropbox, and I wonder if I am not using it right? Maybe someone can clue me in on the best way to rectify the problem. But yeah, this is my first publicly released script :) I am rather new to scripting (if the code did not give it away ;) ), but the process was fun and allowed me to learn new things about how the Ruby language works. It is very satisfying to struggle through the creation process and then see a finished product which resembles the vision. -
Got it : ) Dropbox is so awesome! Thanks for the recommendation