[RESOLVED][XP] ccoa's Tiny Overworld Sprites

Started by Ryex, June 25, 2009, 05:59:26 pm

Previous topic - Next topic

Ryex

June 25, 2009, 05:59:26 pm Last Edit: June 25, 2009, 06:10:59 pm by Ryexander
ccoa made a script called Tiny Overworld Sprites for bothe Xp and vx i need the xp version it used to be posted here
http://www.rpgrevolution.com/forums/index.php?showtopic=20221
but after RPG RPG Revolution did their "User submissions not privileged" this ccoa removed it. dose any one know another place to get it?
I no longer keep up with posts in the forum very well. If you have a question or comment, about my work, or in general I welcome PM's. if you make a post in one of my threads and I don't reply with in a day or two feel free to PM me and point it out to me.<br /><br />DropBox, the best free file syncing service there is.<br />

Jackolas

June 25, 2009, 06:05:00 pm #1 Last Edit: June 25, 2009, 06:06:34 pm by Jackolas
is this it?

Spoiler: ShowHide
# change this to any number less than one to change the size of the world map
# sprites
ZOOM = 0.3
WORLD_IND = '*WORLD*'

class Game_Map
 attr_reader :name
 attr_reader :isworldmap
 
 alias ccoa_setup setup
 #--------------------------------------------------------------------------
 # * Setup
 #     map_id : map ID
 #--------------------------------------------------------------------------
 def setup(map_id)
   ccoa_setup(map_id)
   @name = load_data("Data/MapInfos.rxdata")[@map_id].name
   if @name.include?(WORLD_IND)
     @isworldmap = true
     @name.sub!(WORLD_IND, '')
   else
     @isworldmap = false
   end
 end
end

class Sprite_Character < RPG::Sprite
 alias ccoa_update update
 #--------------------------------------------------------------------------
 # * Frame Update
 #--------------------------------------------------------------------------
 def update
   ccoa_update
   if @character.is_a?(Game_Player) and $game_map.isworldmap
     self.zoom_x = ZOOM
     self.zoom_y = ZOOM
   else
     self.zoom_x = 1.0
     self.zoom_y = 1.0
   end
 end
end


found it in the demo here: http://www.rmxp.org/forums/viewtopic.php?t=55848

also can be find here: http://community.thaiware.com/thai/lofiversion/index.php/t346428-50.html
just search the page for Tiny Overworld Sprites

Ryex

I no longer keep up with posts in the forum very well. If you have a question or comment, about my work, or in general I welcome PM's. if you make a post in one of my threads and I don't reply with in a day or two feel free to PM me and point it out to me.<br /><br />DropBox, the best free file syncing service there is.<br />

Jackolas


Calintz


Jackolas

nope :S

Ccoa's script are realy hard to find lately becouse every place they been on they have been removed ore the place is gone.
i luckely have most of Ccoa's script downloaded and backed up

Blizzard

Lol, why don't you use a script that resizes the sprites?
Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


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.

Holyrapid


Blizzard

You can usually resize sprites by changing the zoom_x and zoom_y attributes of it. It's unnecessary to use smaller sprite when you can resize them via script.
Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


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.

Holyrapid

So, this zoom in and out on the sprites? COOL! Now i just need to look for a bit bigger sprites, instead of giant, for giants :P