Announcement
Announcement
| 2nd Quarter Contest Announcement posted! See the Community Announcements section. |
![]() ![]() |
Nov 12 2011, 07:42 PM
Post
#1
|
|
![]() Master Eventer, Novice scripter, pathetic spriter ![]() Type: Designer Alignment: Chaotic Good |
search number 10519195120
There are three things I wish this script to do. One of them is an Alchemy, one is skill making, and the last is enchanting. For your convenenace I have placed these catagories in spoilers so as to simplify reading. Enchanting Spoiler: Skill making Spoiler: Alchemy Spoiler: The hardest part of this is being able to push an item in the the database with no editor and I would be happy with just the pushing script. I can do the rest if you want but I would appreciate if you did all. I dont care if this is all one script or many. This post has been edited by jesse120: May 19 2012, 06:12 PM -------------------- Master eventer
Need an unusual event call me and i might be able to make it ex vehicle, pet search number I do take event requests search number 10519195120 Please don't put this number on any of your own posts or topics note: the search number will be on any post I make to aid in searching by author. If I forget to put it on a topic please notify me. I will try to check any posts/PMs around 7:30 AM, 3:00 PM, and after 6 PM most days (time in Pacific Time) The ultimate video game Spoiler: If you are a believer of Jesus Christ, believe he is the only way to heaven, and are 100% proud of it, put this in your sig. |
|
|
|
Nov 12 2011, 07:58 PM
Post
#2
|
|
![]() Type: Undisclosed Alignment: Unaligned |
If you want to request to a script that better suits your desires, then you need to be detailed about what you actually want. Telling people to play a specific game is not acceptable for a request here. You need to describe what you want in coherent English.
Read the request guidelines and update your request within 24 hours. Otherwise, this topic gets closed. -------------------- I no longer support Tankentai.
|
|
|
|
Feb 25 2012, 07:01 PM
Post
#3
|
|
![]() Master Eventer, Novice scripter, pathetic spriter ![]() Type: Designer Alignment: Chaotic Good |
bump
-------------------- Master eventer
Need an unusual event call me and i might be able to make it ex vehicle, pet search number I do take event requests search number 10519195120 Please don't put this number on any of your own posts or topics note: the search number will be on any post I make to aid in searching by author. If I forget to put it on a topic please notify me. I will try to check any posts/PMs around 7:30 AM, 3:00 PM, and after 6 PM most days (time in Pacific Time) The ultimate video game Spoiler: If you are a believer of Jesus Christ, believe he is the only way to heaven, and are 100% proud of it, put this in your sig. |
|
|
|
Mar 3 2012, 10:57 PM
Post
#4
|
|
![]() Master Eventer, Novice scripter, pathetic spriter ![]() Type: Designer Alignment: Chaotic Good |
-------------------- Master eventer
Need an unusual event call me and i might be able to make it ex vehicle, pet search number I do take event requests search number 10519195120 Please don't put this number on any of your own posts or topics note: the search number will be on any post I make to aid in searching by author. If I forget to put it on a topic please notify me. I will try to check any posts/PMs around 7:30 AM, 3:00 PM, and after 6 PM most days (time in Pacific Time) The ultimate video game Spoiler: If you are a believer of Jesus Christ, believe he is the only way to heaven, and are 100% proud of it, put this in your sig. |
|
|
|
Mar 13 2012, 11:29 PM
Post
#5
|
|
![]() Master Eventer, Novice scripter, pathetic spriter ![]() Type: Designer Alignment: Chaotic Good |
bump
-------------------- Master eventer
Need an unusual event call me and i might be able to make it ex vehicle, pet search number I do take event requests search number 10519195120 Please don't put this number on any of your own posts or topics note: the search number will be on any post I make to aid in searching by author. If I forget to put it on a topic please notify me. I will try to check any posts/PMs around 7:30 AM, 3:00 PM, and after 6 PM most days (time in Pacific Time) The ultimate video game Spoiler: If you are a believer of Jesus Christ, believe he is the only way to heaven, and are 100% proud of it, put this in your sig. |
|
|
|
Apr 1 2012, 04:44 PM
Post
#6
|
|
![]() Master Eventer, Novice scripter, pathetic spriter ![]() Type: Designer Alignment: Chaotic Good |
bump
-------------------- Master eventer
Need an unusual event call me and i might be able to make it ex vehicle, pet search number I do take event requests search number 10519195120 Please don't put this number on any of your own posts or topics note: the search number will be on any post I make to aid in searching by author. If I forget to put it on a topic please notify me. I will try to check any posts/PMs around 7:30 AM, 3:00 PM, and after 6 PM most days (time in Pacific Time) The ultimate video game Spoiler: If you are a believer of Jesus Christ, believe he is the only way to heaven, and are 100% proud of it, put this in your sig. |
|
|
|
Apr 4 2012, 01:44 AM
Post
#7
|
|
![]() ![]() Type: Coder Alignment: Neutral Good |
Depending of what you want to add
RPG::Item,RPG::Armor,RPG::Weapon $data_items,$data_armors,$data_weapons CODE newitem = RPG::Item.new newitem.name = 'new added item' newitem.icon_index = 10 newitem.description = 'This is a new item added by script' newitem.id = $data_items.nitems+1 $data_items.push(newitem) #Get the last item in the data_items $game_party.gain_item( $data_items[$data_items.nitems],1) to add a new item to the Database, after you created all the items you wanted like a upgraded weapons save your new database, if you dont all save done with a upgraded weapon added gonna make the save bug with a error, for saving just do a dump like : Depending on the file you have modified too Items.rvdata for items, Weapons.rvdata for weapons ect... CODE file = File.open("Items.rvdata", "wb") Marshal.dump($data_items, file) The only prob with this is when you will test your game and add a new items after you saved it with the Marshal.dump the item will be added in the "Database" of your rpg maker project too, all items added and saved in game will appears in the editor too -------------------- |
|
|
|
Apr 4 2012, 03:34 AM
Post
#8
|
|
![]() Master Eventer, Novice scripter, pathetic spriter ![]() Type: Designer Alignment: Chaotic Good |
I thank you for telling me this. However I am not sure how to get this to work. If you would make a sample script to make a new item called "Test" with a description "test item"
having it add state "test" and restore 10% health when used so I can see how it works thanks. -------------------- Master eventer
Need an unusual event call me and i might be able to make it ex vehicle, pet search number I do take event requests search number 10519195120 Please don't put this number on any of your own posts or topics note: the search number will be on any post I make to aid in searching by author. If I forget to put it on a topic please notify me. I will try to check any posts/PMs around 7:30 AM, 3:00 PM, and after 6 PM most days (time in Pacific Time) The ultimate video game Spoiler: If you are a believer of Jesus Christ, believe he is the only way to heaven, and are 100% proud of it, put this in your sig. |
|
|
|
Apr 4 2012, 04:59 AM
Post
#9
|
|
![]() ![]() Type: Coder Alignment: Neutral Good |
First you have to Add a new state : test
you can add this code in any event in Call Script CODE newstate = RPG::State.new newstate.name = 'test' newstate.id = $data_states.nitems+1 newstate.icon_index = 240 newstate.nonresistance = true $data_states.push(newstate) And Second you create your item with the new state test and add it to your inventory to test CODE newitem = RPG::Item.new newitem.name = 'Test' newitem.icon_index = 64 newitem.description = 'test item' newitem.id = $data_items.nitems+1 newitem.hp_recovery_rate = 10 newitem.plus_state_set = [$data_states.nitems] $data_items.push(newitem) #add item $game_party.gain_item( $data_items[$data_items.nitems],1) this code is very simple, newitem = RPG::Item.new --> newitem become a Item newitem.name = 'Test' --> set the name of our newitem newitem.icon_index = 64 --> set the icon of our newitem newitem.description = 'test item' --> set the description of our newitem newitem.id = $data_items.nitems+1 --> set the id of our newitem ->Important if it not set it not gonna work newitem.hp_recovery_rate = 10 --> set 10% of hp recovery newitem.plus_state_set.push($data_states.nitems) --> add the last state created on the newitem $data_items.push(newitem) --> Add the newitem in the Database and for test to see if it working $game_party.gain_item( $data_items[$data_items.nitems],1) --> add the item in the player inventory -------------------- |
|
|
|
Apr 4 2012, 04:17 PM
Post
#10
|
|
![]() Master Eventer, Novice scripter, pathetic spriter ![]() Type: Designer Alignment: Chaotic Good |
I couldn't get it to work in events. Is there a possibility that the French Scripting is different than English Scripting?
-------------------- Master eventer
Need an unusual event call me and i might be able to make it ex vehicle, pet search number I do take event requests search number 10519195120 Please don't put this number on any of your own posts or topics note: the search number will be on any post I make to aid in searching by author. If I forget to put it on a topic please notify me. I will try to check any posts/PMs around 7:30 AM, 3:00 PM, and after 6 PM most days (time in Pacific Time) The ultimate video game Spoiler: If you are a believer of Jesus Christ, believe he is the only way to heaven, and are 100% proud of it, put this in your sig. |
|
|
|
Apr 4 2012, 05:46 PM
Post
#11
|
|
![]() ![]() Type: Coder Alignment: Neutral Good |
Nop there no difference between French and English script ^^,
here a demo http://www.mediafire.com/download.php?66cv3yzpsgggvz4 -------------------- |
|
|
|
Apr 5 2012, 01:19 AM
Post
#12
|
|
![]() Master Eventer, Novice scripter, pathetic spriter ![]() Type: Designer Alignment: Chaotic Good |
Thank you for the demo. It worked well. I am not sure what I did wrong when I tried.
Can this also work in a full non evened script? Using user defined variables? -------------------- Master eventer
Need an unusual event call me and i might be able to make it ex vehicle, pet search number I do take event requests search number 10519195120 Please don't put this number on any of your own posts or topics note: the search number will be on any post I make to aid in searching by author. If I forget to put it on a topic please notify me. I will try to check any posts/PMs around 7:30 AM, 3:00 PM, and after 6 PM most days (time in Pacific Time) The ultimate video game Spoiler: If you are a believer of Jesus Christ, believe he is the only way to heaven, and are 100% proud of it, put this in your sig. |
|
|
|
![]() ![]() |
| Lo-Fi Version | Time is now: 24th May 2013 - 12:25 AM |
|
|