RPG Maker VX Ace

RPG Maker VX Ace

Vlues Script Compilation 2
101 条留言
Nope NoJoke 2023 年 11 月 25 日 下午 6:46 
Erm. You forgot to add the discussion with the table of contents. (Or it got removed for some reason)
John Spliff 2019 年 9 月 24 日 下午 4:27 
So when I go to use this I want my dash and jump changed, I can't seem to turn off jumping without ruining pull or pick up functions little help?
THE EVIL SKUNK 2018 年 7 月 29 日 下午 4:25 
how the hell do you use scripts
FrozenIsopod 2018 年 4 月 18 日 上午 12:07 
Just Subscribed and have no idea where to look for this file to implement it to the game? can you please tell me where it is? ---thanks
jacie<3 2017 年 9 月 6 日 下午 6:08 
Alright! Thanks, Vlue! Unfortunately I'm having the same problem with the crafting system again! Seems to go on/off all by itself? Great scripts! VERY useful!
Starlight  [作者] 2017 年 8 月 24 日 下午 2:46 
@WLTP (Sorry for lack of response) The order of the scripts is the issue here and I know, it's not apparent - Make sure the Actor Sprite script is below the Damage Popup script.
jacie<3 2017 年 8 月 24 日 下午 2:05 
Alright. I've got the Crafting all sorted out. But now I have yet another problem...I have added in the Actor Sprite script for a Sideview Battling look. I also added in Critical Strike effects and Damage Popups from your other Script Compilations, and once I added them, the player appears in the top left corner, practically off screen. I've attempted to adjust everything, but nothing is working. I've even tried deleting the scripts and testing it out there. Any suggestions?
Thanks for reading. Amazing scripts!
jacie<3 2017 年 8 月 19 日 上午 10:13 
Hello, Vlue. I am having some problems with the Crafting System script. I assigned an NPC as a blacksmith to allow you to craft weapons. I give myself all the materials and gold, but whenever I try to craft it, it won't allow me to and all the names of the weapons are grey. I turned off everything in the script so all you'd need are the materials and enough gold. Anything I'm possibly doing wrong?
The Orca in Question 2017 年 1 月 19 日 下午 4:20 
Dear Vlue...
I'm having some problems with the Quest System script.
I tried to set up an npc that would assign a quest, and then dialouge would play after.
But when I go and press Accept or Decline for the quest I get an error that states "Script 'Game_Interpreter' line 450: NoMethodError occured. undefined method '[]' for nil:NilClass"
I'm pretty new to RPG Maker and Ruby so I would really appreciate the assistence!
Also, a quick explanation on how to actually set the objective would be nice...:steamhappy:
tjtorin 2016 年 6 月 27 日 上午 11:50 
did not work for me:(:steamsad:
Enoch Dreemurr 2016 年 1 月 19 日 下午 4:17 
Ok, sorry Vlue. I have figured it out. The shop needed the "hey they got x item" call that told the quest code. Now its working, and I have added it to my repituar of game making skills. Thank you for making these usefull scrips.
Starlight  [作者] 2016 年 1 月 18 日 下午 2:55 
You don't. It's all manual. If the item is given by an event then you would just set/adv the obj with the appropriate script calls right then and there, but if the item is obtained randomly (like from battle or bought at a shop or etc.) then you'll have to do a more fancy script call to set the value of the obj to the number of related items held. An example of what that would look like (with a quest named :questid1, and an obj named :obj1, checking for item #31): set_obj(:questid1, :obj1, $game_party.item_number($data_items[31]) - you can then have that running in a parallel process common event or after any evented situation where its 'possible' to get that item.
Enoch Dreemurr 2016 年 1 月 18 日 上午 6:42 
Hello Vlue, I am haveing a bit of trouble making my own quests running off of your script. My problem is getting the quest to recognise items. Like the mysterious lady, get water quest. How do I make it so its a potion or any other item? I combed the code and don't see where to change the specific item. Thank you for taking the time and patience to answer.
GreyFox 2015 年 8 月 30 日 下午 12:52 
hen i add more quests to the basic quests line 237 has an error why.
ive added two quests on my game it worked with 3 but not now and it says its something to do with line 237
Severus 2015 年 7 月 20 日 下午 1:14 
Never mind, steam finally updated and I found the files with the project manager. Thanks Vlue, now it's time to jump into these juicy scripts and see what happens :3
Severus 2015 年 7 月 18 日 上午 11:55 
I'm subscribed and everything, but I don't see a download option available. :/
Starlight  [作者] 2015 年 4 月 11 日 下午 3:54 
The way the events are set up in the demo here only works if you reset the self switch of the throwables whenever you reenter the map or however, since when they are thrown their 'D' self switch is activated. The Erase Event event command only erases the event for the duration of the map, and is reset when you leave/reenter.
YOWVEETOO 2015 年 4 月 11 日 下午 3:22 
I have a problem. I'm using the Field Abilities script, and I placed a few barrels to throw. I can throw them, and they dissapear like normal. But when I exit the map cell and re-enter, the barrels on the map flash and dissapear, as if I had thrown them. I don't know how to fix it.
Starlight  [作者] 2015 年 3 月 22 日 下午 3:37 
What is the exact script call you are trying to make?
Arcanus 2015 年 3 月 22 日 上午 8:25 
I need some help, one thanks for the awsome script compliation, but I have a question for the basic quest system, I can set up the quest, but have no real idea on how to make the game know how to finish it. I thought I could use the set_obj(:questid, :objectiveid, value) script call, but when I match the value here to the Max value ID to my objectives the game crashes and says Script 'Game_Interperter' line 1411: ArgumentError occurred. wrong number of arguments (1 for 2). Meanwhile while the script's value was at 1 it happened and when I changed it to 2 it happened, any idea what it is saying, or how to even tell the script when the quest is completed?
Starlight  [作者] 2015 年 2 月 10 日 下午 8:55 
Use a temp variable (just one that only needs to hold a value for a short while) and use Control Variables (Event command) to set it. It has a random feature right in it. Then you just use the Change Items event command to add a number of logs equal to the variable.
veria 2015 年 2 月 10 日 下午 2:09 
Dear Vlue,
oh okay so it's pretty set standerdly like that. Thats what i thought lol. Okay well, thanks for the reply... i'll figure somthing out XDD my commend event idea only halfway works. XD lol OHHH 0-0 now that i'm thinking of it. heres a questinon that has nothing to do with your scrips XD I'm trying to make it so the player and cut a tree (an event) and it randmizes how many logs they get. I've been trying to make it randomize between 1 of 5 varables. T_T but it only goes for the first one every time. Any idea what i might have been doing wrong this is fustrating, i think it should be working. lol thx,
Again, Veria Yokai ((aka i will probably keep bugging you XD but i am also advertising to some freinds about your scripts so win win 0w0 *thumbs up*))
Starlight  [作者] 2015 年 2 月 9 日 下午 7:27 
I think the closest you can get is a piece of gear that teaches the player a specific skill that summons a specific actor. When they have the gear equipped they have access to that spell, but when they don't.. they don't.
veria 2015 年 2 月 9 日 下午 1:53 
Dear Vlue,
Once again i run into complications, and this time its becuse i dont know what to do exacly XD I'm looking at the pet and summoning system. I was looking forword to having a acter summon a character from there skill menu, that will only come out if the player has a persific item. IF they dont have the item, they wont come out. I tryed with a commen event, it doesn't work T_T sooo yea. I went to look at the script closer, and got really conffused as to where i put the info i want in to make a new summon or pet, and how to attached things like listed above too it. Any ideas or comments on this perhaps? This is just a helpful hand this time XDD You are not required to answer, I just figured i would as.
Thanks your Fellow RPGer Veria Yokai... agian.
veria 2015 年 2 月 4 日 下午 2:37 
Dear Vlue,
Thanks to you letting me know how it's suppost to work, thankyou for that, i relized... there was another script conflicting with the crafting stuff. XDD a script i THOUGHT i got rid of in the past XD so it was a mistake on my end, once again. 0w0 i did misread the 0=item 1=weapon and 2=armor thing though, i appreshate it ^W^ and thankyou for your time~
Your fellow RPGer, Veria Yokai
Starlight  [作者] 2015 年 2 月 3 日 下午 4:26 
Both :result and :materials have a type, which as explained in the script determines whether its an item, weapon or armor.
"type is 0 for item, 1 for weapon, 2 for armor"

And that.. should actually be everything, as the recipes you can learn are the recipes you set up, so if you set ones up with the right type for weapons or armors, then you can learn them. (Actually, as an addendum, the id for learn_recipe and forget_recipe is the id number of the recipe in the recipe lists, not the id number of anything from the database. Also, the id number of the recipes has nothing to do with the id number of anything in the database.)

Hope that helps~
veria 2015 年 2 月 3 日 下午 2:24 
Dear Vlue...
I ended up with a question after all XD. Okay so i'm going to try and explain what i'm talking about first: Advanced Crafting. I was looking through it, set up a few things. And noticed to things. One, in the scrpt editing part, where you put the item recipies, how do you change the item it uses or crafts, into a weapon or armor instead of a item. Also, second. When you use the event Learn script, it only teachs you recipies from the Item menu (such as postions) and not for the weapon or armor. SO here's the question, how do i make it so i can set it to craft weapons and armor, and for the player to learn to do so?
Thx, your fellow RPGer Veria Yokai~
Starlight  [作者] 2015 年 1 月 31 日 上午 6:42 
Apparently Steam won't allow me to link it here, but if you go to my website (the url should be in the header of the script) there is a tutorial for using Basic Quest System.
MeatHookMarty 2015 年 1 月 31 日 上午 3:48 
vlue I was wondering how to add quests to my game could you tell me?
veria 2015 年 1 月 25 日 下午 5:47 
Dear Vlue,

I was having issues, but i relized my mistakes XDD But i felt need to say thankyou for the wonderful scripts, and all the hard work you put into them and the instructions that explain how to use them ^W^ if i encounter any problems, or maybe have questions i'll be sure to ask ^W^ thankyou once again~
Hydronz 2015 年 1 月 18 日 上午 9:06 
Thanks! It now works perfectly! And thanks to the fast response as well!
Starlight  [作者] 2015 年 1 月 18 日 上午 8:32 
Ruby is very particular about it's brackets and commas, make sure you add a comma ( , ) to the end of the line of the first formation (and any subsequent ones aside from the last, though you can add one there too)
Hydronz 2015 年 1 月 18 日 上午 1:11 
Hi Vlue, I love the compilation! I have a problem however, with the Formation Bonus script, as I add a new formation and go to start the game, a SyntaxError appears and says "unexpected tINTEGER, expecting '}' 2 => "Diamond..." It would be awesome if you could help me with this problem, I have little to no programming knowledge what so ever, so I apologize if this is a noobish question, thanks!
Nill (Dark) 2014 年 12 月 29 日 上午 6:45 
Ohhhh the notebox.
Well I'm stupid.
Thanks!
Starlight  [作者] 2014 年 12 月 28 日 下午 12:06 
It's just the way the quest is set up. Thanks for bringing it up however.
icekingya 2014 年 12 月 28 日 上午 11:38 
Hi Vlue, I tested your game and I found the canteen quest bug. I stacked a lot of canteens and brought them to the lady so I can finish the quest multiple times.Unfortunately, When I take the quest again, she doesnt seem to accept the canteen until I actually "buy" one. Just to tell you if you can fix this :)
Starlight  [作者] 2014 年 12 月 28 日 上午 12:10 
When you use the medium summon tag in skills is what sets that. For example, you can put this in the notebox of the skill: <MED_SUMMON 2, 5, 0>
And that skill will replace the user with actor #2 (in the database) for 5 turns with a bonus level of 0.
Nill (Dark) 2014 年 12 月 27 日 下午 3:49 
How do I trigger the Form Change script for Pets and Summons? Trying to change an actor into something else.
(first time scripting, bear with me)
Starlight  [作者] 2014 年 12 月 11 日 下午 4:20 
Those damn followers, always getting in the way of things.
You could use the script call: $game_map.events_nt(x,y).size > 0
in a conditional branch to check if there's more then one event on a specific tile, similar to activating a switch by pushing something on it.
And for that other one, quest completions are evented so you just turn the switch on after they turn in or are forced to complete the quest... unless I have auto-complete quests in the script, I can't remember if I did that... in that case you'd have to have an event check if the quest is complete and turn on the script then, there's no way to do a predetermined.
Martyr Logarius 2014 年 12 月 11 日 下午 1:12 
Amazing scripts! One edit I would suggest in the Discussion is mentioning that the Field Ability "Grab" gets glitchy if you have Party Followers on. When pulling the object backwards it collides with the followers causing it to cancel moving backwards though your character moves back slowly as if he was still pulling it.

Other than that these are all awesome! I was also wondering if there was a way to activate switches by pushing blocks onto them, also turn on a predetermined switch when completing a quest?
Caffeinated NPC Gaming 2014 年 11 月 21 日 下午 4:06 
Love this pack.

+1 Sub
+1 Favorite
+1 Thumbs Up
Starlight  [作者] 2014 年 11 月 9 日 上午 11:35 
Lazy Internet Theorem, hah. I like that one.
JAGIELSKI 2014 年 11 月 9 日 上午 11:13 
No, I meant list of scripts, not that they are under discussions.

Lazy Internaut theorem: The more clicks it takes to get you to the info, the less likely you will get it.
Starlight  [作者] 2014 年 11 月 9 日 上午 11:09 
It is in the description, highlighted in blue even. Since it was posted :p
Yah, I always forget to fix the quests whenever I update the project, fixed~
JAGIELSKI 2014 年 11 月 9 日 上午 1:19 
Ah, okay. Should be in the description IMO though. Anyway, there's crashbug in the demo when you talk to the guy who is supposed to give you forest quest (no quest with such id)
Starlight  [作者] 2014 年 11 月 8 日 下午 7:41 
There's a table of contents provided in the submission discussions here (tab on the top of this page), as well as within the project itself.
JAGIELSKI 2014 年 11 月 8 日 下午 4:46 
Script list?
Starlight  [作者] 2014 年 10 月 28 日 上午 8:33 
Done and done.
Feryr 2014 年 10 月 28 日 上午 4:56 
By chance could you put that update on the non-steam download link.... Thanks a lot btw!
Starlight  [作者] 2014 年 10 月 26 日 上午 8:06 
Sure, why not. I updated that script so you can set multiple regions.