RPGMakerID
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Komunitas RPG Maker Indonesia
 
IndeksIndeks  Latest imagesLatest images  PencarianPencarian  PendaftaranPendaftaran  Login  
Per 2016, RMID pindah ke RMID Discord (Invite link dihapus untuk mencegah spambot -Theo @ 2019). Posting sudah tidak bisa dilakukan lagi.
Mohon maaf atas ketidaknyamanannya dan mohon kerjasamanya.

 

 tolong bantuanya tentang ini pliss

Go down 
5 posters
PengirimMessage
KillJoyEz
Newbie
Newbie
KillJoyEz


Level 5
Posts : 7
Thanked : 0
Engine : RMVX
Skill : Beginner
Type : Writer

tolong bantuanya tentang ini pliss Empty
PostSubyek: tolong bantuanya tentang ini pliss   tolong bantuanya tentang ini pliss Empty2011-12-26, 07:15

tolong ya saya bingung cara nggunain script" ini

Enemy Animated Battlers
#==============================================================================
# ■ Enemy Animated Battlers for RPG Tankentai Sideview Battle System
# 1.17.09
#------------------------------------------------------------------------------
# Script by Kylock
# Updated by Mr. Bubble
# Visual Guide at:
# http://www.rpgrevolution.com/forums/index.php?s=&showtopic=18304&view=findpost&p=212499
#==============================================================================
# Easy to implement interface to specify animated battlers for enemies. Note
# enemy batters must be formatted THE SAME as your character battlers. Also,
# you must have 2 copies of your enemy battler:

# <game folder>\Graphics\Battlers\$<enemy name>.png
# <game folder>\Graphics\Characters\$<enemy name>.png
#
# If you are using this script with the Kaduki's Battlers setup, enemies must
# have "_1", "_2" and "_3" files in the Characters folder similar to the
# Kaduki actors. See inside Kaduki demo's Characters folder for an example.
#
# If used with IAB, enemies must have a 4x11 "_1" file in the Characters
# folder. See inside IAB demo's Characters folder for an example.
#
# When you set up your "troops" for the encounter, you may need to tweak the
# positioning of the enemy as the sprites look funny and the actual placement
# may be slightly off. A few battle tests should be sufficient.
# Enemy shadows may also look odd. You may adjust or change the shadow using
# the respective settings within this script.
#
# All settings in this add-on can also be done within the Configuration script.
#==============================================================================

module K_ENEMY_BATTLERS
ENEMY_ID = [1] # list of enemies with batter sprites(ex. [1,24])
end

class Game_Enemy < Game_Battler
#--------------------------------------------------------------------------
# ● Enemy Screen Positioning Adjustment
#--------------------------------------------------------------------------
# Postive Y-values move the battler down. Negatives move the shadow up.
# If the battler is offscreen, it is suggested to use this to function.
#
# return [ 0, 0] <- [X-coordinate、Y-coordinate]
alias bubs_eab_position_plus position_plus
def position_plus
case @enemy_id
when 33 # Animated Slime
return [0, 0]
end
bubs_eab_position_plus
end
#--------------------------------------------------------------------------
# ● Enemy Shadow
#--------------------------------------------------------------------------
# Define a separate shadow image file for an enemy battler.
#
# return "shadow01" <- Image file name in .Graphics/Characters
# return "" <- No shadow used.
alias bubs_eab_shadow shadow
def shadow
case @enemy_id
when 31, 32, 33 # Ralph, Mercenary, Animated Slime
return "shadow00"
end
bubs_eab_shadow
end
#--------------------------------------------------------------------------
# ● Enemy Shadow Adjustment
#--------------------------------------------------------------------------
# Postive Y-values move the shadow down. Negatives move the shadow up.
#
# return [ X-Coordinate, Y-Coordinate]
alias bubs_eab_shadow_plus shadow_plus
def shadow_plus
case @enemy_id
when 33 # Animated Slime
return [ 0, 1]
when 31, 32 # Ralph, Mercenary
return [ 0, 5]
end
bubs_eab_shadow_plus
end
#--------------------------------------------------------------------------
# ● Enemy Animated Battler Settings
#--------------------------------------------------------------------------
alias keb_anime_on anime_on
def anime_on
for x in K_ENEMY_BATTLERS::ENEMY_ID
return true if @enemy_id == x
end
keb_anime_on
end
#--------------------------------------------------------------------------
# ● Enemy Invert Settings
#--------------------------------------------------------------------------
alias keb_action_mirror action_mirror
def action_mirror
for x in K_ENEMY_BATTLERS::ENEMY_ID
return true if @enemy_id == x
end
keb_action_mirror
end
end

sama ini

Enemy Equipped Weapons
=begin
--------------------------------------------------------------------------
● Enemy Equipped Weapon Addon for RPG Tankentai Sideview Battle System
8/27/08
--------------------------------------------------------------------------
With this addon, you can equip a weapon from your Database to an Enemy.
You can already do this within the Config script, but creating a seperate
addon with an easier explanation would be better for people who are new. Do
not expect this to work with Kylock's Stationary Enemies Addon.

When an enemy is equipped with a weapon, the weapon sprite will also appear
when any Weapon Animation actions are used just like an actor's weapon. They
will also gain any stat boosts the weapon provides.

To equip more enemies with weapons, add in more case statements under
"case @enemy_id" like this:

when 31 # Enemy ID number
return 2 # Weapon ID number
when 32
return 2
when 1
return 3

=end

class Game_Enemy < Game_Battler
alias bubs_enemy_equipped_weapon weapon
def weapon
case @enemy_id
when 1 # Enemy ID number
return 1 # Weapon ID number
when 32
return 69
when 34
return 69
end
bubs_enemy_equipped_weapon
end
end

tolong dibantu ya
Kembali Ke Atas Go down
Aegis
Legendary
Legendary
Aegis


Level 3
Posts : 2152
Thanked : 56
Engine : Multi-Engine User
Skill : Very Beginner
Type : Artist

Trophies
Awards:


tolong bantuanya tentang ini pliss Empty
PostSubyek: Re: tolong bantuanya tentang ini pliss   tolong bantuanya tentang ini pliss Empty2011-12-26, 07:17

http://www.rpgrevolution.com/forums/index.php?s=&showtopic=18304&view=findpost&p=212499 <<< itu ada Guidenya disini :ngacay2:
Kembali Ke Atas Go down
http://billcreative.deviantart.com
KillJoyEz
Newbie
Newbie
KillJoyEz


Level 5
Posts : 7
Thanked : 0
Engine : RMVX
Skill : Beginner
Type : Writer

tolong bantuanya tentang ini pliss Empty
PostSubyek: Re: tolong bantuanya tentang ini pliss   tolong bantuanya tentang ini pliss Empty2011-12-26, 07:21

linknya error,
ada guide atau tutorial yang lain?
Kembali Ke Atas Go down
Aegis
Legendary
Legendary
Aegis


Level 3
Posts : 2152
Thanked : 56
Engine : Multi-Engine User
Skill : Very Beginner
Type : Artist

Trophies
Awards:


tolong bantuanya tentang ini pliss Empty
PostSubyek: Re: tolong bantuanya tentang ini pliss   tolong bantuanya tentang ini pliss Empty2011-12-26, 07:39

di scriptnya kan ada tulisannya

insert battlernya di

<game folder>\Graphics\Battlers\$<enemy name>.png
<game folder>\Graphics\Characters\$<enemy name>.png

formatnya harus sesuai :D
dan jangan lupa tambahin IDnya kayak "_1", "_2" and "_3"

kalo cara pasang scriptnya, gak tau :v
mungkin di copypaste ke script editor :v
Kembali Ke Atas Go down
http://billcreative.deviantart.com
shikami
Member 1000 Konsep
avatar


Level 5
Posts : 3744
Thanked : 31
Engine : Multi-Engine User
Skill : Beginner
Type : Developer

Trophies
Awards:


tolong bantuanya tentang ini pliss Empty
PostSubyek: Re: tolong bantuanya tentang ini pliss   tolong bantuanya tentang ini pliss Empty2011-12-26, 08:04

this is a miracle.... :v
aegis nyaut dengan menggunakan script :ngacay2:
mending download demo tankentai-nya, saya kira udah SANGAT JELAS sekali :)
Kembali Ke Atas Go down
http://shikamicro.wordpress.com
Nefusa 7
Senior
Senior
Nefusa 7


Level 5
Posts : 954
Thanked : 6
Engine : RMXP
Skill : Intermediate
Type : Scripter

tolong bantuanya tentang ini pliss Empty
PostSubyek: Re: tolong bantuanya tentang ini pliss   tolong bantuanya tentang ini pliss Empty2011-12-26, 08:51

:hmm:
donlod demonya aja :D
di dalam demo ada penjelasan dan cara pengguna'annya ;)
Kembali Ke Atas Go down
https://nefusa.my.id/
KillJoyEz
Newbie
Newbie
KillJoyEz


Level 5
Posts : 7
Thanked : 0
Engine : RMVX
Skill : Beginner
Type : Writer

tolong bantuanya tentang ini pliss Empty
PostSubyek: Re: tolong bantuanya tentang ini pliss   tolong bantuanya tentang ini pliss Empty2011-12-26, 16:14

tankentai sbs versi berapa?
aku punyanya yang RPG tankentai SBS 3.4e yang enemy equip weapon gag ada
Kembali Ke Atas Go down
Deenos
Advance
Advance
Deenos


Level 5
Posts : 487
Thanked : 7
Engine : RMVX Ace
Skill : Skilled
Type : Databaser

Trophies
Awards:
tolong bantuanya tentang ini pliss Empty
PostSubyek: Re: tolong bantuanya tentang ini pliss   tolong bantuanya tentang ini pliss Empty2011-12-27, 07:46

itu kita harus pasang sendiri enemy weaponnya
Kembali Ke Atas Go down
http://deempty.blogspot.com
Sponsored content





tolong bantuanya tentang ini pliss Empty
PostSubyek: Re: tolong bantuanya tentang ini pliss   tolong bantuanya tentang ini pliss Empty

Kembali Ke Atas Go down
 
tolong bantuanya tentang ini pliss
Kembali Ke Atas 
Halaman 1 dari 1
 Similar topics
-
» [ASK]Tolong dibantu ya tentang RPGMXP..
» tolong tentang battle system
» [help]Tolong bantuin tentang card systen
» [Help] Tolong bantu tentang lomba komputer
» Jawab pliss

Permissions in this forum:Anda tidak dapat menjawab topik
RPGMakerID :: Scripts & Event Systems :: RMVX Scripts :: RGSS2 Support-
Navigasi: