The RPG Maker Resource Kit

RMRK RPG Maker Creation => RPG Maker General => General Scripting => Topic started by: Red Eye Dragoon on January 12, 2006, 11:28:02 PM

Title: I need a script please
Post by: Red Eye Dragoon on January 12, 2006, 11:28:02 PM
i need a script that will make my menu screen look like this(except not black and white and more organized):
(https://rmrk.net/proxy.php?request=http%3A%2F%2Fimg6.imageshack.us%2Fimg6%2F7735%2Funtitled8ye.png&hash=f99cd260c93a973e40abd91f6c0fbf3195f75803)
If you can do it id be very appreciative.
Title: I need a script please
Post by: ahref on January 13, 2006, 04:22:17 PM
wow thats an exact copy of a menu that is on rmxp.net but unfourtuantely its for someones game and he wont realease the scrip to the public
Title: I need a script please
Post by: Shinami on January 14, 2006, 12:09:51 PM
I can try to make that for you but I can't promise anything. I have a few things for reference that I can use for that layout too so it shouldn't take too long.

P.S.This my first attempt at a script for someone else so cross your fingers!
Title: I need a script please
Post by: Shinami on January 14, 2006, 02:52:27 PM
Sorry for the double post but its an update on where I'm at with his script.

(https://rmrk.net/proxy.php?request=http%3A%2F%2Fimg57.imageshack.us%2Fimg57%2F1113%2Fpreview6cl.th.png&hash=1cbdfba7dbf39608f1d8702bd382659f6aa1046a) (http://img57.imageshack.us/my.php?image=preview6cl.png)

Just a little preview of what I've finished already. I'd continue to work on it but I'm tired and have work soon. >_<

(https://rmrk.net/proxy.php?request=http%3A%2F%2Fimg62.imageshack.us%2Fimg62%2F5062%2Fpreview20ti.th.png&hash=15df4ca9ed016400fea79ec7c1859db67f3a77cf) (http://img62.imageshack.us/my.php?image=preview20ti.png)


This is the problem I'm currently trying to solve as well...notice how I can't seem to make the second character move over to the right? =/

Also, I tried to do the equipment part but being as its not seeable, I bet you can guess I failed on that for now...I'll keep trying though. Hopefully, I'll be able to figure something out by looking at the other scripts in RMXP that use the weapon_id and armor_id. The most common error I've gotten so far is a "0 for 1" arguement.
Title: I need a script please
Post by: Red Eye Dragoon on January 15, 2006, 06:04:55 AM
hey thanks it looks good so far except the part where the second character isnt on the right,sorry i cant help as i cant script at all
Title: I need a script please
Post by: ArkBennett on January 15, 2006, 06:57:13 AM
Change the coordinates on the picture and stats are.
Check the Window part of the script.
Title: I need a script please
Post by: Shinami on January 15, 2006, 09:09:34 AM
....Its finished!
Heres a screeny of what it looks like with three characters together.
(https://rmrk.net/proxy.php?request=http%3A%2F%2Fimg61.imageshack.us%2Fimg61%2F1482%2Ffinished9rq.th.png&hash=c65ee3e2032fb918677348c21bbc60a1ca727afd) (http://img61.imageshack.us/my.php?image=finished9rq.png)

Now lets see...Instruction time!

Step #1----Add this after line 13 in the script Window_Base
 def draw_actor_face(actor, x, y)
   face = RPG::Cache.character("Faces/" + actor.character_name, actor.character_hue)
   fw = face.width
   fh = face.height
   src_rect = Rect.new(0, 0, fw, fh)
   self.contents.blt(x - fw / 23, y - fh, face, src_rect)
 end

NOTE:To use the facesets, go into your Character graphic folder inside of your projects folder and create a folder called Faces. For each character that will be in your party, you must have a 80x80 picture file with the same name as their character set.

Step #2----Replace line 206-211 in the script Window_Base with this
 def draw_actor_exp(actor, x, y)
   self.contents.font.color = system_color
   self.contents.draw_text(x, y, 24, 32, "Exp")
   self.contents.font.color = normal_color
   self.contents.draw_text(x + 25, y, 84, 32, actor.exp_s, 2)
 end  

NOTE:This keeps the amount of xp needed for a lvl up from appearing. I had to do this because it was taking up a lot of much needed space.

Step #3---Replace the script Window_MenuStatus with this
class Window_MenuStatus < Window_Selectable
#--------------------------------------------------------------------------
# Set up the window
#--------------------------------------------------------------------------
def initialize
  super(0, 0, 480, 420)
  self.contents = Bitmap.new(width - 32, height - 32)
  self.contents.font.name = "Tahoma"
  self.contents.font.size = 24
  refresh
  self.active = false
  self.index = -1
end
#--------------------------------------------------------------------------
# Draws info on the screen
#--------------------------------------------------------------------------
def refresh
   self.contents.clear
  @item_max = $game_party.actors.size
 
  for i in 0...$game_party.actors.size
    x = i * 150
    y = 0
    actor = $game_party.actors[i]
    @actor = $game_party.actors[i]
   self.contents.draw_text(x, 180, 96, 32, "Equipment")
   draw_actor_face(actor, x, y + 100) #To get rid of the Face, put a "#" before the draw_ of this line
    #draw_actor_graphic(actor, 48, y + 65) #and delete the "#" infront of draw of this line
    draw_actor_name(actor, x, y - 5)
    draw_actor_level(actor, x, y + 100)
    draw_actor_exp(actor, x, y + 160)
    draw_actor_hp(actor, x, y + 120)
    draw_actor_sp(actor, x, y + 140)
   draw_item_name($data_weapons[@actor.weapon_id], x - 2, 200)
   draw_item_name($data_armors[@actor.armor1_id], x - 2, 220)
   draw_item_name($data_armors[@actor.armor2_id], x - 2, 240)
   draw_item_name($data_armors[@actor.armor3_id], x - 2, 260)
   draw_item_name($data_armors[@actor.armor4_id], x - 2, 280)
 end
end


#--------------------------------------------------------------------------
# Update of Cursor
#--------------------------------------------------------------------------
def update_cursor_rect
  if @index < 0
    self.cursor_rect.empty
  else
    self.cursor_rect.set(@index * 145, 0, self.width - 335, 310)
  end
end
end


Step #4----Goto the script Scene_Title and add this right after class Scene_Title
$map_infos = load_data("Data/MapInfos.rxdata")
for key in $map_infos.keys
$map_infos[key] = $map_infos[key].name
end


Step #5----Replace the script Scene_Menu with this.
   #==============================================================================
# ** Scene_Menu
#------------------------------------------------------------------------------
#  This class performs menu screen processing.
#==============================================================================

class Scene_Menu
 #--------------------------------------------------------------------------
 # * Object Initialization
 #     menu_index : command cursor's initial position
 #--------------------------------------------------------------------------
 def initialize(menu_index = 0)
   @menu_index = menu_index
 end
 #--------------------------------------------------------------------------
 # * Main Processing
 #--------------------------------------------------------------------------
 def main
   # Make command window
   s1 = $data_system.words.item
   s2 = $data_system.words.skill
   s3 = $data_system.words.equip
   s4 = "Status"
   s5 = "Save"
   s6 = "End Game"
   @command_window = Window_Command.new(160, [s1, s2, s3, s4, s5, s6])
   @command_window.index = @menu_index
   # If number of party members is 0
   if $game_party.actors.size == 0
     # Disable items, skills, equipment, and status
     @command_window.disable_item(0)
     @command_window.disable_item(1)
     @command_window.disable_item(2)
     @command_window.disable_item(3)
   end
   # If save is forbidden
   if $game_system.save_disabled
     # Disable save
     @command_window.disable_item(4)
   end
   # Make play time window
   @playtime_window = Window_PlayTime.new
   @playtime_window.x = 480
   @playtime_window.y = 224
   # Make steps window
   @steps_window = Window_Steps.new
   @steps_window.x = 480
   @steps_window.y = 320
   # Make status window
   @status_window = Window_MenuStatus.new
   @status_window.x = 0
   @status_window.y = 0
   #makes location window
   @map = Window_Mapname.new
   @map.x = 0
   @map.y = 420
   # Execute transition
   Graphics.transition
   # Main loop
   loop do
     # Update game screen
     Graphics.update
     # Update input information
     Input.update
     # Frame update
     update
     # Abort loop if screen is changed
     if $scene != self
       break
     end
   end
   # Prepare for transition
   Graphics.freeze
   # Dispose of windows
   @command_window.dispose
   @playtime_window.dispose
   @steps_window.dispose
   @status_window.dispose
   @map.dispose
 end
 #--------------------------------------------------------------------------
 # * Frame Update
 #--------------------------------------------------------------------------
 def update
   # Update windows
   @command_window.update
   @playtime_window.update
   @steps_window.update
   @status_window.update
   @map.update
   # If command window is active: call update_command
   if @command_window.active
     update_command
     return
   end
   # If status window is active: call update_status
   if @status_window.active
     update_status
     return
   end
 end
 #--------------------------------------------------------------------------
 # * Frame Update (when command window is active)
 #--------------------------------------------------------------------------
 def update_command
   # If B button was pressed
   if Input.trigger?(Input::B)
     # Play cancel SE
     $game_system.se_play($data_system.cancel_se)
     # Switch to map screen
     $scene = Scene_Map.new
     return
   end
   # If C button was pressed
   if Input.trigger?(Input::C)
     # If command other than save or end game, and party members = 0
     if $game_party.actors.size == 0 and @command_window.index < 4
       # Play buzzer SE
       $game_system.se_play($data_system.buzzer_se)
       return
     end
     # Branch by command window cursor position
     case @command_window.index
     when 0  # item
       # Play decision SE
       $game_system.se_play($data_system.decision_se)
       # Switch to item screen
       $scene = Scene_Item.new
     when 1  # skill
       # Play decision SE
       $game_system.se_play($data_system.decision_se)
       # Make status window active
       @command_window.active = false
       @status_window.active = true
       @status_window.index = 0
     when 2  # equipment
       # Play decision SE
       $game_system.se_play($data_system.decision_se)
       # Make status window active
       @command_window.active = false
       @status_window.active = true
       @status_window.index = 0
     when 3  # status
       # Play decision SE
       $game_system.se_play($data_system.decision_se)
       # Make status window active
       @command_window.active = false
       @status_window.active = true
       @status_window.index = 0
     when 4  # save
       # If saving is forbidden
       if $game_system.save_disabled
         # Play buzzer SE
         $game_system.se_play($data_system.buzzer_se)
         return
       end
       # Play decision SE
       $game_system.se_play($data_system.decision_se)
       # Switch to save screen
       $scene = Scene_Save.new
     when 5  # end game
       # Play decision SE
       $game_system.se_play($data_system.decision_se)
       # Switch to end game screen
       $scene = Scene_End.new
     end
     return
   end
 end
 #--------------------------------------------------------------------------
 # * Frame Update (when status window is active)
 #--------------------------------------------------------------------------
 def update_status
   # If B button was pressed
   if Input.trigger?(Input::B)
     # Play cancel SE
     $game_system.se_play($data_system.cancel_se)
     # Make command window active
     @command_window.active = true
     @status_window.active = false
     @status_window.index = -1
     return
   end
   # If C button was pressed
   if Input.trigger?(Input::C)
     # Branch by command window cursor position
     case @command_window.index
     when 1  # skill
       # If this actor's action limit is 2 or more
       if $game_party.actors[@status_window.index].restriction >= 2
         # Play buzzer SE
         $game_system.se_play($data_system.buzzer_se)
         return
       end
       # Play decision SE
       $game_system.se_play($data_system.decision_se)
       # Switch to skill screen
       $scene = Scene_Skill.new(@status_window.index)
     when 2  # equipment
       # Play decision SE
       $game_system.se_play($data_system.decision_se)
       # Switch to equipment screen
       $scene = Scene_Equip.new(@status_window.index)
     when 3  # status
       # Play decision SE
       $game_system.se_play($data_system.decision_se)
       # Switch to status screen
       $scene = Scene_Status.new(@status_window.index)
     end
     return
   end
 end
end

NOTE:Very little of Scene_Menu was changed or added on to so if you have other custom scripts running in Scene_Menu, I will add this part in for you.

Step #6----Create a new script right before the script called Main and add this in the new script. Name the script whatever you want.
class Game_Map

def name
$map_infos[@map_id]
end
end


Step #7----Create a new script right before the script called Main and add this in the new script. Name it whatever you want. I gave credit to those who's scripts helped me make this in this script.
#3 Person Custom Menu Script written by Shinami
#Written using references from scripts written
#by Constance(his forum is ---> http://www.invisionplus.net/forums/index.php?mforum=rmxp&act=idx)
#and from the FF7 script(for face sets) on the Crankeye forums(http://www.crankeye.com/forums)
class Window_Mapname < Window_Base

def initialize
super(0, 0, 640, 60)
self.contents = Bitmap.new(width - 52, height - 32)
self.contents.font.name = "Arial"
self.contents.font.size = 24
refresh
end

def refresh
self.contents.clear

# Map Name
#map = $game_map.name
self.contents.font.color = system_color
self.contents.draw_text(4, 0, 220, 32, "Location")
self.contents.font.color = normal_color
self.contents.draw_text(100, 0, 80, 32, $game_map.name)
#this is gold window
   cx = contents.text_size($data_system.words.gold).width
   self.contents.font.color = normal_color
   self.contents.draw_text(350, 0, 120-cx-2, 32, $game_party.gold.to_s, 2)
   self.contents.font.color = system_color
   self.contents.draw_text(340-cx, 0, cx, 32, $data_system.words.gold, 2)
end
end

EDIT:HERE IS THE PIECE I FORGOT >_< REPLACE Window_Command WITH THIS
#==============================================================================
# ** Window_Command
#------------------------------------------------------------------------------
#  This window deals with general command choices.
#==============================================================================

class Window_Command < Window_Selectable
 #--------------------------------------------------------------------------
 # * Object Initialization
 #     width    : window width
 #     commands : command text string array
 #--------------------------------------------------------------------------
 def initialize(width, commands)
   # Compute window height from command quantity
   super(480, 0, width, commands.size * 32 + 32)
   @item_max = commands.size
   @commands = commands
   self.contents = Bitmap.new(width - 32, @item_max * 32)
   refresh
   self.index = 0
 end
 #--------------------------------------------------------------------------
 # * Refresh
 #--------------------------------------------------------------------------
 def refresh
   self.contents.clear
   for i in 0...@item_max
     draw_item(i, normal_color)
   end
 end
 #--------------------------------------------------------------------------
 # * Draw Item
 #     index : item number
 #     color : text color
 #--------------------------------------------------------------------------
 def draw_item(index, color)
   self.contents.font.color = color
   rect = Rect.new(4, 32 * index, self.contents.width - 8, 32)
   self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
   self.contents.draw_text(rect, @commands[index])
 end
 #--------------------------------------------------------------------------
 # * Disable Item
 #     index : item number
 #--------------------------------------------------------------------------
 def disable_item(index)
   draw_item(index, disabled_color)
 end
end


If there's any trouble inserting this is an existing project of yours, then PM me and I'll try to fix the problem. My first script job complete!!! YEY!!!  :D
Title: I need a script please
Post by: SiR_VaIlHoR on January 15, 2006, 02:09:34 PM
good job! i like very much this menu thanks!
Title: I need a script please
Post by: Red Eye Dragoon on January 15, 2006, 04:54:59 PM
thanks for making the script for me i cant tell youu how long iv waited for one like this, thanks

Edit:Im getting an error on line 328 in Window_Base and all thats there is "end"

Edit2: Nvm i got it fixed
Title: I need a script please
Post by: ArchZealot on January 15, 2006, 05:19:03 PM
Hey Shinami, Im working with Red, and I see something weird about the menu.  I cant make a screenie for some reason, but heres a rough explanation of whats wrong: The menu options -Status, save, exit, etc- are appearing behind the char pic and stats, not on the far right. Now i know this might be me having done something wrong, if so, lemme know ^.^

\\Edit: See Red's post below for a screeny.
Title: I need a script please
Post by: ShadowLink on January 15, 2006, 05:38:13 PM
*begins to worship Shinami's help and script*

Awesome job, buddy!  :D
Title: I need a script please
Post by: Red Eye Dragoon on January 15, 2006, 05:39:46 PM
i have a screenine of what it looks like:

(https://rmrk.net/proxy.php?request=http%3A%2F%2Fimg307.imageshack.us%2Fimg307%2F2519%2Funtitled0fn.png&hash=e6cdf287b231e7136e4f7f2de72aa8b948a5c69f)
Title: I need a script please
Post by: Shinami on January 15, 2006, 10:17:34 PM
I forgot the part that I changed to move the menu bar!  :oops: I knew there was something in my notes that I did that wasnt written down...I'm glad to hear your happy with it Dragon! Sorry I forgot a piece of it though.  :oops: Apparently, I didn't write that one piece down in my notes on what I changed.

If you guys will toss me a few more ideas, I might be able to improve this script even more so that it stands out a little more as a custom script! I'm also not happy with the selection bar after you press Enter on Skill, Equip etc. It doesn't seem to highlight each character properly.
Title: I need a script please
Post by: Red Eye Dragoon on January 15, 2006, 11:34:11 PM
well,you could move the equipment down a smidge and space them apart alittle
Title: I need a script please
Post by: dracohaze on January 16, 2006, 12:50:06 AM
I keep getting this:

????? 'Window_Base' ? 328 ??? SyntaxError ????????

Can someone send me a game folder with the script in it already?
Don't feel like messing with it. :?  PLEASE!
Title: I need a script please
Post by: Kasper666 on January 16, 2006, 03:55:42 AM
Mine is all good ...just a small glitch tho... There i sno text for my god dam buttons...lol...How do i fix this....on the title screen all i see is:
[        ]
[        ]
[        ]


What the hell am i supposed ot do...the buttons still work however but same goes for the ingame menu....it has no  text on it but the buttons still work...
Please Help meeee
Title: I need a script please
Post by: Shinami on January 16, 2006, 01:01:32 PM
Quote from: dracohazeI keep getting this:

????? 'Window_Base' ? 328 ??? SyntaxError ????????

Can someone send me a game folder with the script in it already?
Don't feel like messing with it. :?  PLEASE!
That error is most likely an extra "end" syntax that isn't supposed to be there but without more information I can't help you on this. If you know of a file hosting site I could use to post a demo(possibly with explanations on how to change certain things or add your own things) of the script, then I'll post a demo.


   draw_item_name($data_weapons[@actor.weapon_id], x - 2, 200)
   draw_item_name($data_armors[@actor.armor1_id], x - 2, 220)
   draw_item_name($data_armors[@actor.armor2_id], x - 2, 240)
   draw_item_name($data_armors[@actor.armor3_id], x - 2, 260)
   draw_item_name($data_armors[@actor.armor4_id], x - 2, 280)

NOTE:This code is located in Window_MenuStatus
Here is a breakdown of how to change somethings location in the Window_MenuStatus script. To lower the equipment in the menu how ever much you want, change the values at the very end of the parenthese aka 200, 220, 240 etc. That sets the Y grid coordinates for where they will show up. The Y coords move it up and down. the higher the positive number, the lower it will appear. Negative numbers can be used as well.

The x - 2 sets the X grid coordinates. Instead of changing the x, you would change the  - 2(which is minus 2, not a negative 2) to the desired value. You may addition or subtraction to set the X coords. The reason X - 2 is used instead of a number like I did with Y is because x is used for setting up the additional party members stuff for when you have 2-3 party members instead of one. The formula is x = 150 * i
i is equal to the size of your party therefore if i is equal to 2, it would be     x = 150 * 2. Unfortunately, the menu can only hold up to 3 people before it starts to look strange. After x = 150 * i is computed for each party member, x = 150 for party member one, x = 300 for party member two etc. Also, a higher the X value will move the equipment to the right. A lower X value will move the equipment to the left.

I may make changes in the future to move the menu command to the top of the screen and make use of the far right hand screen piece for a fourth party member as well as fix up the selectable cursor some because it seems off when you highlight the second or third party member. If you would like, I could try to add icons behind the menu commands. I may even be able to used custom icons for it!

Quote from: Kasper666Mine is all good ...just a small glitch tho... There i sno text for my god dam buttons...lol...How do i fix this....on the title screen all i see is:
[ ]
[ ]
[ ]


What the hell am i supposed ot do...the buttons still work however but same goes for the ingame menu....it has no text on it but the buttons still work...
Please Help meeee
Make a game disk of the project with this error with RMXP and send it to Shinami576@hotmail.com so I can take a look at it when I get home. Make the subject of the e-mail "Script Help Please" so I know its you and not junk mail because I don't have access to RMXP on my sister's computer. >_>
Title: I need a script please
Post by: Red Eye Dragoon on January 16, 2006, 04:31:57 PM
i didnt understand a thing u just said but i have a hosting site you could use

host-a.net
Title: I need a script please
Post by: ahref on January 16, 2006, 06:14:29 PM
hmm...ill have to make it availible for 6 party members with an edit but im going to use it thank you
Title: I need a script please
Post by: ArchZealot on January 16, 2006, 08:39:01 PM
Hey man Shinami, I wanted to send a demo with that invisble menu error to you, but that address you gave us seems to be non-existant :/
Title: I need a script please
Post by: Kasper666 on January 16, 2006, 09:39:10 PM
Shinami...Maybe i should be more clear....cause ur e-mail isnt relle working.... I installed your script and the Text for the [New Game], [Continue]. and [Shutdown] does not appear when i start my game. The buttons still work to start, or continue the game but they contain no text. This is also happening in my INSERT menu during the game. The Equip and Items..Etc....Have no text even though  they work.....PLease help me...There is no text on my buttons...

All the text on te buttons in battle do not work either....I cannot see the FIght Skills items or any other buttons text.....its just blank....Help me please....
Title: I need a script please
Post by: Shinami on January 17, 2006, 07:05:37 AM
I may have found a solution. You may not have the Tahoma font on your computer. Tahoma is the font I specified for Window_Base to use for displaying text.

Custom Menu for DOWNLOAD (http://host-a.net/showfiles.php?usern=Shinami576)
This is the Custom Menu Script in a compressed game disk made by RMXP. If this doesn't show text on your computer Kasper, then you most likely don't have the Tahoma font on your computer.

On a side note, I think I'm going to take this script I made and make it even spiffier and better looking! Who knows? I just might incorporate two of my other script ideas into it...
Title: I need a script please
Post by: ArchZealot on January 17, 2006, 10:25:34 AM
Hey man, tried your demo. I can see the text now, but the menu is still behind the pics.

Screenie (http://i26.photobucket.com/albums/c125/AkaiRyuofTruth/NewBitmapImage.jpg)
Title: I need a script please
Post by: Shinami on January 17, 2006, 10:37:31 AM
:whoa: work ate me brain....

Go into Window_Command and replace line 15 with this...
  super(480, 0, width, commands.size * 32 + 32)

Btw, I updated the script a little...(https://rmrk.net/proxy.php?request=http%3A%2F%2Fimg32.imageshack.us%2Fimg32%2F2816%2Fv114vj.th.png&hash=fb0f6cb4bb6f27e0aa800e75d4584ce915fbb7fd) (http://img32.imageshack.us/my.php?image=v114vj.png)

On top of that, I updated the extracter file with the v1.1 version. I think I'm going to keep working on this script until I've added nifty features to a few of the other sub menus...maybie a different background for the main menu. Although most of my attempts at that have failed so far...The annoying bit with the menu command window is fixed in v1.1 too. If you glance through Window_MenuStatus, you'll find that you have the option of using battler, char graphic, or face set now too.
Title: I need a script please
Post by: ArchZealot on January 17, 2006, 11:00:27 AM
yay, thanks man, it works ^.^ b

Looking forward to those changes ur gonne be making. Great script man,
Title: I need a script please
Post by: Shinami on January 17, 2006, 11:22:50 AM
Thank you for the compliment! I'm storing the credits, update notes, and possible future plans in the Window_Mapname script so if someone else uses my script and is wondering what is coming up next, look there.

Also, if anyone has ideas, I'm open to the suggestion. Just nothing insanely hard like a custom skill learning system >_> I've tried making two of those already and I've found I don't know enough about the skill scripts yet to do anything other than drive myself insane. Atleast I have many script sites bookmarked for reference...
Title: I need a script please
Post by: ArchZealot on January 17, 2006, 12:59:23 PM
I have an idea... but it might be insanely hard.. I'll let you decide ^.^

About the chars, right now we can only fit in 3, how about making a sort of ring menu-ish effect where you scroll through the characters, like 3 chars display at a time, but press the right arrow button and all the characters move one position to the left, making charcter 4 now visible where char 3 used to be. Some ppl use up to 6 party members, so... this would be perfect for them.

I know i didnt explain all that well, if need be, i can revise it somewhat :/
Lol, just an idea tho ^.^ b
Title: I need a script please
Post by: Red Eye Dragoon on January 21, 2006, 03:57:33 PM
looks good,cant wait to see the finishing version
Title: I need a script please
Post by: Charka on January 22, 2006, 05:55:29 PM
it keeps saying "????? 'window_base' ? 328 ??? syntax error ????????"

how do i fix it?
Title: I need a script please
Post by: Ayden on January 22, 2006, 06:19:01 PM
getting erroer.  

"???????windowbase 328?????syntax?????" wtf is up with that?!?!?!? btw its a very nice script, I just wis hI could use it.
Title: I need a script please
Post by: anton on February 18, 2006, 07:17:45 AM
This is a great script...just one thing...

I'm almost getting what kasper was getting...but the menu windows show up and everything...but they are blank, but everthing is selectable...like it was there....but no text...I have the tahoma font and I downloaded that .exe file you posted and it hasn't fixed the problem...
here's the ss (https://rmrk.net/proxy.php?request=http%3A%2F%2Fi9.photobucket.com%2Falbums%2Fa83%2F7he5hocker%2Fohnoes.jpg&hash=5e99d0b211b3a3ce7b851642f02bce90d0785759)

ty for any help you can give me.

edit...also, there is no text in battle windows"fight etc" and on the title screen

edit..again...I fixed the problem...if anyone wants to know I made a new script above Main and put
"Font.default_name = "Tahoma"
Slipknots solution
Title: Re: I need a script please
Post by: Kakaroti on October 22, 2006, 11:19:21 AM
In my case not one of these solutions cut the deal...

The error stands where it stands, I can't fix it.... :S

I'll just have to reinstall my RPG Maker XP, and find a better script that works 100%
Title: problem
Post by: punishermark13 on October 23, 2006, 01:40:20 AM
window base 216 error at the end thing

ps: nice script