RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Light's Shadow

0 Members and 1 Guest are viewing this topic.

****
Banned
Rep:
Level 88
I'm basically Yoda's brother
did anyone try my game beta? if so, please post what you think

just so everyone knows, im 15 years old.

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
- the whole eventing after we enter the house is weird
-I can lay ontop of the dad in bed
-Interior mapping is bad. where the heck it the outside of the walls? and you marked the door with a carpet + no rooms
-Game freezes when I exit door. I pressed DOWN right when I left the door and game froze
Watch out for: HaloOfTheSun

****
Banned
Rep:
Level 88
I'm basically Yoda's brother
Quote
- the whole eventing after we enter the house is weird
what do you mean?

Quote
-I can lay ontop of the dad in bed
ok, ill fix that

Quote
-Interior mapping is bad. where the heck it the outside of the walls? and you marked the door with a carpet + no rooms
i've seen tons of games like that! dont insult me for that! the method i used for inside of buildings is called reedalizing (reed-al-i-zing) >:(

Quote
-Game freezes when I exit door. I pressed DOWN right when I left the door and game froze
ok, ill fix that

just so everyone knows, im 15 years old.

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
did anyone try my game beta? if so, please post what you think



Quote
-Interior mapping is bad. where the heck it the outside of the walls? and you marked the door with a carpet + no rooms
i've seen tons of games like that! dont insult me for that! the method i used for inside of buildings is called reedalizing (reed-al-i-zing) >:(


if you didn't want feedback on what to fix then why did you ask?

yes TONS of games do indoors like that...i tell each and EVERY last game that way sucks. looks ugly and unorganized.

here is my quick one min house it's done the right way.

Watch out for: HaloOfTheSun

****
Banned
Rep:
Level 88
I'm basically Yoda's brother
i would have to re-do ever room :'(

anyway, i think i found the problem with the glitches. i cant script rgss so i cant read rgss either. i think this script is the problem but im not sure. can you tell me what it does?

Code: [Select]
#================================
# ? Dynamic Maps
#================================
# ?By: Near Fantastica
# Date: 05.09.05
# Version: 1
#================================

# updated 2005-11-07 by Wachunga
# generalized to work for modified versions of Game_Map,
# e.g. even if more instance variables are added

module Map
#--------------------------------------------------------------
@map_data = {}
#--------------------------------------------------------------------------
def Map.set_map(map, map_id)
@map_data[map_id] = map
end
#--------------------------------------------------------------------------
def Map.data(map_id)
return @map_data[map_id]
end
end

class Game_Map
#--------------------------------------------------------------
alias dm_orig_setup setup
def setup(map_id)
save_map(@map_id)
if Map.data(map_id) == nil
dm_orig_setup(map_id)
else
load_map(map_id)
end
end
#-----------------------------------------------------------
def load_map(map_id)
$game_map = Map.data(map_id)
end
#--------------------------------------------------------------
def save_map(map_id)
return if map_id == 0
Map.set_map(self.dup, map_id)
end
end

just so everyone knows, im 15 years old.