Isto é uma pré-visualização de um tema em Hitskin.com
Instalar o tema • Voltar para a ficha do tema
[VXA-OS] Make some hidden text at VIP icon
3 participantes
Página 1 de 1
[VXA-OS] Make some hidden text at VIP icon
Hi Everyone, iam a stranger but very interest about VXA-OS
I want to ask, i have script like this:
on [VS] Sprite_Minimap
How to edit it to be like "Item (I)", "Skill (H)"
with automatically day in it toward "network vip".
image for example:
THANKYOU!
I want to ask, i have script like this:
on [VS] Sprite_Minimap
- Código:
def draw_VIP_icon #textedit2
bitmap = Cache.system('Iconset') #@character.vip?
icon_index = $network.vip? ? Configs::MAP_VIP_ICON : Configs::MAP_NONVIP_ICON
rect = Rect.new(icon_index % 16 * 24, icon_index / 16 * 24, 24, 24)
self.bitmap.blt(0, 30, bitmap, rect)
end
How to edit it to be like "Item (I)", "Skill (H)"
with automatically day in it toward "network vip".
image for example:
THANKYOU!
_________________
eek- Novato
- Mensagens : 21
Créditos : 1
Re: [VXA-OS] Make some hidden text at VIP icon
I didn't quite understand what you mean. Do you want your window to appear when you press a key?
Re: [VXA-OS] Make some hidden text at VIP icon
Olá!
Acredito que ele queira criar uma nova tecla de atalho, parecida com as de itens, habilidades e afins, porém, para abrir uma janela Vip que possui automatização em seu efeito diário, aparecendo a tecla para coletar ou algo do tipo.
Resumindo, ele quer criar uma tecla de atalho com letras do alfabeto, para abrir a janela vip e a mesma ter seu efeito diário do Script Network Vip, algo assim.
Acredito que ele queira criar uma nova tecla de atalho, parecida com as de itens, habilidades e afins, porém, para abrir uma janela Vip que possui automatização em seu efeito diário, aparecendo a tecla para coletar ou algo do tipo.
Resumindo, ele quer criar uma tecla de atalho com letras do alfabeto, para abrir a janela vip e a mesma ter seu efeito diário do Script Network Vip, algo assim.
Re: [VXA-OS] Make some hidden text at VIP icon
You can add a new key on the def update_trigger of the script [VS] Scene_Map.
You can use:
You can use:
- Código:
elsif Input.trigger?(:LETTER_V)
Re: [VXA-OS] Make some hidden text at VIP icon
You can create a new icon in the def create_all_icons of the [VS] Scene_Map script:
- Código:
if $network.vip?
time_now = Time.new(Time.now.year, Time.now.month, Time.now.day, 0, 0, 0)
vip_days = (($network.vip_time - time_now) / 86400).to_i
@icons << Icon.new(nil, 0, 0, Configs::MENU_ICON, "Vip days: #{vip_days}")
else
@icons << Icon.new(nil, 0, 0, Configs::MENU_ICON, "Vip days: 0")
end
However, the number of VIP days is already shown in the character selection. I believe that showing this in the game would pollute the screen.
Re: [VXA-OS] Make some hidden text at VIP icon
yeah indeed this is a little uselss move bcoz s already show in the chaaracter selection, haha, but THANK YOU VALENTINE! SOLVED!Valentine escreveu:You can create a new icon in the def create_all_icons of the [VS] Scene_Map script:
- Código:
if $network.vip?
time_now = Time.new(Time.now.year, Time.now.month, Time.now.day, 0, 0, 0)
vip_days = (($network.vip_time - time_now) / 86400).to_i
@icons << Icon.new(nil, 0, 0, Configs::MENU_ICON, "Vip days: #{vip_days}")
else
@icons << Icon.new(nil, 0, 0, Configs::MENU_ICON, "Vip days: 0")
end
However, the number of VIP days is already shown in the character selection. I believe that showing this in the game would pollute the screen.
_________________
eek- Novato
- Mensagens : 21
Créditos : 1
Tópicos semelhantes
» Event Icon/Text Display
» Undefeated Hidden Enemies Visual Fix
» [VXA-OS] VIP Icon
» Separador de Icon Set
» RGSS3_Popup Icon Ver.1.2
» Undefeated Hidden Enemies Visual Fix
» [VXA-OS] VIP Icon
» Separador de Icon Set
» RGSS3_Popup Icon Ver.1.2
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos