Yoshi Fans Club

Conectarse

Recuperar mi contraseña

Últimos Yoshis

Bienvenid@ a YFC: michael.suesca

YFC Social
Últimos temas
» Ausencia loca.
Hoy a las 8:51 am por MadTheYoshi

» ¿Les gusta la Escuela?
Hoy a las 8:48 am por MadTheYoshi

» Una ausencia chiguagueña
Hoy a las 8:39 am por YoshiGM

» Numero Infinito
Hoy a las 8:15 am por Blue Star Yoshi

» Tienda Pikachu
Hoy a las 8:12 am por MadTheYoshi

» 1000 Eggs para mi
Hoy a las 7:18 am por Blue Star Yoshi

» Lucky Coins
Hoy a las 7:16 am por Blue Star Yoshi

» Mario Party
Hoy a las 7:12 am por Blue Star Yoshi

» Las aventuras de Lily Pink Yoshi
Ayer a las 10:03 pm por LilyPink

» otro de mis dibujos
Ayer a las 9:32 pm por yoshiesmejor

Ganador del FDLS #18
faqndo99
[Ver Completa]
Los posteadores más activos de la semana
yoshiesmejor
 
MadTheYoshi
 
Yoshízetag
 
Blue Star Yoshi
 
YoshiGM
 
Alvaro-BAN08
 
linboo
 
BOT YFC
 
~Shin
 
Fire!
 

¿Quién está en línea?
En total hay 41 usuarios en línea: 4 Registrados, 0 Ocultos y 37 Invitados :: 2 Motores de búsqueda

Blue Star Yoshi, MadTheYoshi, YoshiGM, Yoshízetag

La mayor cantidad de usuarios en línea fue 465 el Mar Mayo 03, 2011 2:51 pm.

Pedido a Gm de script local

Ver el tema anterior Ver el tema siguiente Ir abajo

Pedido a Gm de script local

Mensaje por AssaSpeed el Mar Mar 29, 2011 2:11 pm

Holaps tu juego tenia un script que cad avez que cambiabas de mapa te ponía el sitio en el que estabas en una esquina dentro de un marcador con una hoja, si puedieras ponerme los sprites necesarios para el script y el codigo del script te lo agradeceria, gracias.


Última edición por AssaYoshi el Vie Abr 01, 2011 1:01 pm, editado 1 vez






Userbars:


Touhou Archievements:

AssaSpeed
Yoshi Estrella
Yoshi Estrella

<b>Edad</b> Edad: 18
Inscripción: 10/01/2010

Ficha Yoshi
Color Favorito de Yoshi: Rojo Rojo
Yoshi Island Favorito: Yoshi Island(SNES/GBA) Yoshi Island(SNES/GBA)

http://ragnamania.espana-foro.net/forum

Volver arriba Ir abajo

Re: Pedido a Gm de script local

Mensaje por YoshiGM el Mar Mar 29, 2011 2:25 pm

Hola

Sip, ya se a cuál es..

Código:
#_______________________________________________________________________________
# MOG_MPW Map_Name V1.3           
#_______________________________________________________________________________
# By Moghunter     
# http://www.atelier-rgss.com
#_______________________________________________________________________________
module MOG
#Font Name.
MPFONT = "Georgia"
#Fade ON/OFF(True - False).
MPNMFD = true
#Fade Time(in seconds).
MPNMTM = 10
#Window Position.
# 0 = Upper Left.
# 1 = Lower Left.
# 2 = Upper Right.
# 3 = Lower Right.
MPNMPS = 2
# Disable Window Switch(ID).
WM_SWITCH_VIS_DISABLE = 15
end
#_________________________________________________
$mogscript = {} if $mogscript == nil
$mogscript["mpmapname"] = true
###############
# Game_System #
###############
class Game_System
attr_accessor :fdtm
attr_accessor :mpnm_x
attr_accessor :mpnm_y
alias mog24_initialize initialize
def initialize
mog24_initialize
@fdtm = 255 + 40 * MOG::MPNMTM
if MOG::MPNMPS == 0
@mpnm_x = -300
@mpnm_y = 0
elsif MOG::MPNMPS == 1
@mpnm_x = -300
@mpnm_y = 380
elsif MOG::MPNMPS == 2
@mpnm_x = 640
@mpnm_y = 0
else
@mpnm_x = 640
@mpnm_y = 380
end 
end
def mpnm_x
return @mpnm_x
end
def mpnm_y
return @mpnm_y
end
def fdtm
if @fdtm <= 0
@fdtm = 0
end
return @fdtm
end
end
############
# Game_Map #
############
class Game_Map
attr_reader  :map_id 
def mpname
$mpname = load_data("Data/MapInfos.rxdata")
$mpname[@map_id].name
end
end
###############
# Window Base #
###############
class Window_Base < Window
def nd_mapic
mapic = RPG::Cache.picture("")   
end 
def draw_mpname(x,y)
mapic = RPG::Cache.picture("Mpname") rescue nd_mapic 
cw = mapic.width 
ch = mapic.height
src_rect = Rect.new(0, 0, cw, ch)
self.contents.blt(x , y - ch + 65, mapic, src_rect)
self.contents.font.name = MOG::MPFONT
self.contents.font.size = 22
self.contents.font.color = Color.new(0,0,0,255)
self.contents.draw_text(x + 76, y + 27, 110, 32, $game_map.mpname.to_s,1)
self.contents.font.color = Color.new(255,255,255,255)
self.contents.draw_text(x + 75, y + 26, 110, 32, $game_map.mpname.to_s,1)
end
end
##########
# Mpname #
##########
class Mpname < Window_Base
def initialize
super($game_system.mpnm_x, $game_system.mpnm_y, 250, 100)
self.contents = Bitmap.new(width - 32, height - 32)
self.opacity = 0
refresh
end
def refresh
self.contents.clear
draw_mpname(10,0)   
end
end
#############
# Scene_Map #
#############
class Scene_Map
alias mog24_main main
def main
@mpnm = Mpname.new
@mpnm.contents_opacity = $game_system.fdtm
if $game_switches[MOG::WM_SWITCH_VIS_DISABLE] == false
@mpnm.visible = true
else
@mpnm.visible = false 
end 
mog24_main
@mpnm.dispose
end
alias mog24_update update
def update
mog24_update 
$game_system.mpnm_x = @mpnm.x
$game_system.mpnm_y = @mpnm.y
if $game_switches[MOG::WM_SWITCH_VIS_DISABLE] == true or $game_system.fdtm <= 0
@mpnm.visible = false 
else
@mpnm.visible = true
end
if MOG::MPNMPS == 0 or MOG::MPNMPS == 1
if @mpnm.x < 0
  @mpnm.x += 8
elsif @mpnm.x >= 0
  @mpnm.x = 0
end 
else
if @mpnm.x > 400
  @mpnm.x -= 8
elsif @mpnm.x <= 400
  @mpnm.x = 400
end   
end
@mpnm.contents_opacity = $game_system.fdtm
if MOG::MPNMFD == true
$game_system.fdtm -= 3
end
end
alias mog24_transfer_player transfer_player
def transfer_player
mog24_transfer_player
if MOG::MPNMPS == 0
$game_system.mpnm_x = -300
$game_system.mpnm_y = 0
elsif MOG::MPNMPS == 1
$game_system.mpnm_x = -300
$game_system.mpnm_y = 380
elsif MOG::MPNMPS == 2
$game_system.mpnm_x = 640
$game_system.mpnm_y = 0
else
$game_system.mpnm_x = 640
$game_system.mpnm_y = 380
end 
@mpnm.y = $game_system.mpnm_y
@mpnm.x = $game_system.mpnm_x
$game_system.fdtm = 255 + 40 * MOG::MPNMTM
@mpnm.refresh
end
end


Crea una clase nueva sobre Main y lo nombras como quieras. Luego pega esta imagen en la carpeta pictures:



Recuerda: Si se resolvió tu duda, edita el tema y pon RESUELTO!




Pinchale a la licencia y ayudame a subir de nivel .
Si te sale un PromoCode me lo pasas por MP yoshi victory!

YoshiGM
Administrador
Administrador

<b>Edad</b> Edad: 19
Inscripción: 03/12/2008

Ficha Yoshi
Color Favorito de Yoshi: Naranja Naranja
Yoshi Island Favorito: Yoshi Island(SNES/GBA) Yoshi Island(SNES/GBA)

http://www.yoshifansclub.com

Volver arriba Ir abajo

Re: Pedido a Gm de script local

Mensaje por AssaSpeed el Vie Abr 01, 2011 12:58 pm

Thankx ^^






Userbars:


Touhou Archievements:

AssaSpeed
Yoshi Estrella
Yoshi Estrella

<b>Edad</b> Edad: 18
Inscripción: 10/01/2010

Ficha Yoshi
Color Favorito de Yoshi: Rojo Rojo
Yoshi Island Favorito: Yoshi Island(SNES/GBA) Yoshi Island(SNES/GBA)

http://ragnamania.espana-foro.net/forum

Volver arriba Ir abajo

Re: Pedido a Gm de script local

Mensaje por YoshiGM el Vie Abr 01, 2011 3:57 pm

>>> Muevo a Dudas resueltas.




Pinchale a la licencia y ayudame a subir de nivel .
Si te sale un PromoCode me lo pasas por MP yoshi victory!

YoshiGM
Administrador
Administrador

<b>Edad</b> Edad: 19
Inscripción: 03/12/2008

Ficha Yoshi
Color Favorito de Yoshi: Naranja Naranja
Yoshi Island Favorito: Yoshi Island(SNES/GBA) Yoshi Island(SNES/GBA)

http://www.yoshifansclub.com

Volver arriba Ir abajo

Ver el tema anterior Ver el tema siguiente Volver arriba


Permiso de este foro:
No puedes responder a temas en este foro.