Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Ultimate Shadow Remover
#1
Shadow Remover
Version: 1

Introduction

Here's a little script we did & fixed up based on problems with all the other shadow killer-type scripts. :)

Features
  • Removes automatic shadows by putting walls on RMVX's 3rd map layer
  • That's it. End of story.
  • The table still has feet!
Screenshots

[Image: shadowslay.jpg]

Script

Code:
# Ultimate shadow remover!
# By the folks at http://rmvx.gameclover.com

class Game_Map
  alias gamebaker_goodbyeshadow_oldsetup setup
  def setup(*args)
    gamebaker_goodbyeshadow_oldsetup(*args)
    goodbye_shadows
  end

  def goodbye_shadows
    for x in 0...$game_map.data.xsize
      for y in 0...$game_map.data.ysize
        if $game_map.data[x,y,0] >= 4352
          $game_map.data[x,y,1] = $game_map.data[x,y,0]
          $game_map.data[x,y,0] = 0
        end
      end
    end
  end
end

Instructions

Plug & play

Credits and Thanks

Enterbrain for making their automatic shadows easily removable.
Initial version (last year) was based on code by Abt Ploufen.

Terms and Conditions

Not intended for commercial use. If you'd like to repost this script somewhere, please include a link to http://rmvx.gameclover.com along with it :)
Reply }


Possibly Related Threads…
Thread Author Replies Views Last Post
   Customize/Disable Text Outline + Shadow (v1.1) Zerbu 3 6,894 11-01-2015, 03:56 PM
Last Post: DerVVulfman
   MrMo's ABS Ultimate DerVVulfman 28 66,915 08-25-2012, 03:28 AM
Last Post: DerVVulfman
   Meagan's Particles for MrMo's ABS Ultimate DerVVulfman 1 5,363 11-09-2011, 05:02 AM
Last Post: DerVVulfman
   Shadow Hearts: Covenant Menu Mac 2 8,486 02-16-2010, 01:00 AM
Last Post: kyonides
   Sprite Shadow syvkal 0 5,472 03-08-2008, 04:31 AM
Last Post: syvkal
   Sprite Shadow Rataime 0 4,891 03-02-2008, 08:03 AM
Last Post: Rataime



Users browsing this thread: