Started by nathmatt, March 24, 2010, 08:31:41 pm
Quote from: winkioI do not speak to bricks, either as individuals or in wall form.
Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.
p result unless result == nil
def pos x, y = self.position x = ( x + $game_map.display_x / 4) / 32 y = ( y + $game_map.display_x / 4) / 32 return x, y end
def pos x, y = self.position x = ( x + $game_map.display_x / 4) / 32 y = ( y + $game_map.display_y / 4) / 32 return x, y end
Quote from: nathmatt on March 31, 2010, 09:41:17 amupdate fixed small error with the y to fix it replacedef pos x, y = self.position x = ( x + $game_map.display_x / 4) / 32 y = ( y + $game_map.display_x / 4) / 32 return x, y endwith thisdef pos x, y = self.position x = ( x + $game_map.display_x / 4) / 32 y = ( y + $game_map.display_y / 4) / 32 return x, y endedit: I made it with Blizz-ABS ver 2.57 i am not sure y it wouldn't be working for you ?edit 2: Are you getting an error message or is it just not working ?edit 3: Fixed where if you were to click the mouse for the message window the player would move
Quote from: Professor Ryexander Elm on April 01, 2010, 07:55:46 pmQuote from: nathmatt on March 31, 2010, 09:41:17 amupdate fixed small error with the y to fix it replacedef pos x, y = self.position x = ( x + $game_map.display_x / 4) / 32 y = ( y + $game_map.display_X / 4) / 32 return x, y endwith thisdef pos x, y = self.position x = ( x + $game_map.display_x / 4) / 32 y = ( y + $game_map.display_Y / 4) / 32 return x, y endedit: I made it with Blizz-ABS ver 2.57 i am not sure y it wouldn't be working for you ?edit 2: Are you getting an error message or is it just not working ?edit 3: Fixed where if you were to click the mouse for the message window the player would move um those codes are exactly the same...
Quote from: nathmatt on March 31, 2010, 09:41:17 amupdate fixed small error with the y to fix it replacedef pos x, y = self.position x = ( x + $game_map.display_x / 4) / 32 y = ( y + $game_map.display_X / 4) / 32 return x, y endwith thisdef pos x, y = self.position x = ( x + $game_map.display_x / 4) / 32 y = ( y + $game_map.display_Y / 4) / 32 return x, y endedit: I made it with Blizz-ABS ver 2.57 i am not sure y it wouldn't be working for you ?edit 2: Are you getting an error message or is it just not working ?edit 3: Fixed where if you were to click the mouse for the message window the player would move
def pos x, y = self.position x = ( x + $game_map.display_x / 4) / 32 y = ( y + $game_map.display_X / 4) / 32 return x, y end
def pos x, y = self.position x = ( x + $game_map.display_x / 4) / 32 y = ( y + $game_map.display_Y / 4) / 32 return x, y end
Quote from: Shiny Magikarp on April 02, 2010, 01:28:18 pmI like this script, especially the part where it does nothing at all in my game. But that probably is my fault.
Quote from: Tyril132 on April 02, 2010, 01:45:08 pmQuote from: Shiny Magikarp on April 02, 2010, 01:28:18 pmI like this script, especially the part where it does nothing at all in my game. But that probably is my fault.Nothing at all is better than a fatal script error. Well... unless you're intentionally trying to break the script for testing.
Quote from: nathmatt on April 02, 2010, 04:37:51 pmare toy making sure you have either tons custom controls on or Blizz-ABS are you also making sure that you have the original mouse script by blizzard and that they are both below Blizz-ABS