VX 스크립트

[br]Click here to feed me![br]Get your own at Pokeplushies!Get your own at PokePlushies!</a>


[br]Click here to feed me a Rare Candy![br]Get your own at Pokeplushies!





[br]Click here to feed me a fruit![br]Get your own at Dinomon!



[br]Click here to feed me a fruit![br]Get your own at Dinomon!




[Show/Hide] Wish list







[Show/Hide] Dinomons

Chompy


[br]Click here to feed me a fruit![br]Get your own at Dinomon!

Stompy

[br]Click here to feed me a fruit![br]Get your own at Dinomon!

Bitey


[br]Click here to feed me a fruit![br]Get your own at Dinomon!

Destroyer

[br]Click here to feed me a fruit![br]Get your own at Dinomon!

Rex

[br]Click here to feed me a fruit![br]Get your own at Dinomon!

Mr.Bite


[br]Click here to feed me a fruit![br]Get your own at Dinomon!

Mrs.Bite


[br]Click here to feed me a fruit![br]Get your own at Dinomon!
#======================================================================
====
# ** GameBaker Goodbye Shadows
#==========================================================================
# by sandgolem
# The code this script uses to disable shadows was first credited to
# Abt Plout�n (german) & turned into an automatic setting by me.
#
# Version 1 [VX]
# January 24th, 2008
#==========================================================================

module GameBaker
EnableShadowSwitch = 1
end

#==========================================================================
#
# To check for updates or find more scripts, visit:
# http://www.gamebaker.com/rmvx/scripts/
# Our RMXP scripts: http://www.gamebaker.com/rmxp/scripts/
#
# Instructions: http://www.gamebaker.com/rmvx/scripts/e/goodbye-shadows.php
# Discussion/Help: http://forums.gamebaker.com/showthread.php?t=1171
#
#==========================================================================

class Scene_Map
alias gamebaker_goodbyeshadows_start start
def start
gamebaker_goodbyeshadows_start
if !$game_switches[GameBaker::EnableShadowSwitch]
gamebaker_byeshadows
$game_map.refresh
end
end

def gamebaker_byeshadows
for x in 0...$game_map.data.xsize
for y in 0...$game_map.data.ysize
if $game_map.data[x,y,2] == 0
$game_map.data[x,y,2] = $game_map.data[x,y,1]
$game_map.data[x,y,1] = $game_map.data[x,y,0]
$game_map.data[x,y,0] = 0
end
end
end
end
end

#==========================================================================
# End of file! You can find more of our scripts at http://www.gamebaker.com
#==========================================================================