erosthanatos
Member-
Content Count
27 -
Joined
-
Last visited
-
Days Won
3
erosthanatos last won the day on February 4 2010
erosthanatos had the most liked content!
About erosthanatos
-
Rank
Member
- Birthday 01/08/1990
Other
-
Referer
David
Profile Information
-
Gender
Male
-
Location
GA
Engines
-
Prefered Engine
RPG Maker XP
-
Engine Level
Expert
-
Class Title
Programmer / Scripter
-
Other Skills
RPG Maker. :)
-
Project(s)
Fading Aura
-
....*pokes with a stick* You die or something? lol
Haven't heard from you in a while...:(
-
darkcieran reacted to an answer to a question: [SOLVED]Yet ANOTHER quandry for ya...
-
darkcieran reacted to an answer to a question: [SOLVED]Yet ANOTHER quandry for ya...
-
darkcieran reacted to an answer to a question: [SOLVED]Yet ANOTHER quandry for ya...
-
There is an "If Actor has _______ Armor Equipped" in the conditional branch option of events...does this not work for what you are trying to do?
-
There is, wow can't believe I left out a period :/
-
I don't think there is another way to do this...I don't know what is wrong with using $data_armors, the default scripts reference it in multiple places, why can't I? It seems as if this is a problem with the script command in an event. If you put the code into a script, say in the main of Scene_Menu like so: print($data_armors[$game_party.actors[0]armor1_id].id), it works fine. I don't know what to tell you, except can it be placed in a standalone script?
-
Can you spot me the money, order 2, and then let me pay you back later? Damn, looks like they are out of stock!
-
darkcieran reacted to an answer to a question: [SOLVED]Yet ANOTHER quandry for ya...
-
Sorry, I got your PM, but I'm currently at work, and can't recall the exact syntax...try $data_armors[$game_party.actors[0]armor1_id].id
-
Item question (scriptlet line in common event)
erosthanatos replied to LaDestitute's question in Support
The only problem with this is that I don't know how you are going to read the currently selected item index or the actor index without making both global variables. If would like, I could make these changes in your Scene_Item, and Scene_Command/Scene_Selectable, and then I could simply provide you with a scriptlet. However, by doing this, I could possibly cause incompatabilites with other scripts you are using (or may use in the future), and it would be much more time efficient to just create common events ^^^ -
erosthanatos started following darkcieran
-
darkcieran started following erosthanatos
-
1. You do not want it ticked, unless you DO want there stats to reset 2. Are you using any custom scripts? I am going to test this myself and see what my results are EDIT: I tested this in a new game. Removed Aluxes after I leveled him to 47, then leveled my party to 56, then added him back. Because "Initialize" was not marked, he came back at level 47 like he was supposed to!
-
In the event, where you used the "Change Party" command, you should see it at the bottom
-
That's interesting...It normally works for me. Do you accidentally have the Initialize check-box marked when you add the members back? If so, that is reseting all of their states, items, et cetera to what you have in the database!
-
Item question (scriptlet line in common event)
erosthanatos replied to LaDestitute's question in Support
I don't think there would be a way to do this with a small script inside a common event. I could script you something for game_battler, which is where item effects and targets are defined, but if you don't mind using a status and conditional statement: Create an new status named "Item Buff," or the like. Make your item, Bunny, apply this status, and run a common event. The common event should: Check each character for the status inflicted flag, and if the character has the "Item Buff" status, then raise that characters stats, and remove the buff. -
darkcieran reacted to an answer to a question: [SOLVED]A riddle wrapped in a mystery smothered in secret sauce....
-
darkcieran reacted to an answer to a question: [SOLVED]A riddle wrapped in a mystery smothered in secret sauce....
-
Item question (scriptlet line in common event)
erosthanatos replied to LaDestitute's question in Support
Sorry, I'm still kind of unclear. What is the difference between the items that you want, and items 17-22 in a default RMXP game? -
Item question (scriptlet line in common event)
erosthanatos replied to LaDestitute's question in Support
Could you be more specific? Is this a permanent or temporary stat change? I would assume temporary, only because you don't want to change parameters. However, if you wanted it to be temporary, why would you just not apply status affect +Sharp, +Blink, etc -
[SOLVED]A riddle wrapped in a mystery smothered in secret sauce....
erosthanatos replied to darkcieran's question in Support
Because rgss counts each line as a separate command, the following must be placed as is: index = $game_party.actors[insert party index here].id $game_party.remove_actor(index) You cannot send the second half of the first line as a parameter for the second line, or it won't fit on one line and the game will error out! Remember, index should be from 0-3 -
[SOLVED]A riddle wrapped in a mystery smothered in secret sauce....
erosthanatos replied to darkcieran's question in Support
$game_variable[index of variable] = $game_party.actors[index of actor in party].id Remember that an index starts with 0 not 1