RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
ActiveCountBattle

0 Members and 1 Guest are viewing this topic.

**
Rep: +0/-0Level 88
Can anyone get me the script for that battle system. Thanks

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
Which ACB are you talking about? There's more than one.

**
Rep: +0/-0Level 88
Im not so sure, but I found one:

http://www.excite.co.jp/world/english/web/body/?wb_url=http%3A%2F%2Ff44.aaa.livedoor.jp%2F%7Eytomy%2Ftkool%2Frpgtech%2Fbattle%2Facb_xp.html&wb_lp=JAEN&wb_dis=2

But cant set it up....I really suck at that stuff. Can anyone set it up in a new game, and upload it for me please?

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
I think its because its translated all wrong...the script seems out of order. well I can't set it up because I suck at that too, but to whoever can help Snickers here is a translated one:

http://www.dubealex.com/asylum/index.php?showtopic=4712&hl=ActiveCountBattle
Watch out for: HaloOfTheSun

**
Rep: +0/-0Level 88
anyone please? just make a new game , insert script, check if its working, and upload it for me...sorta like a demo, since the scipt dosen't come with one

*******
I am epic, you are not.
Rep:
Level 93
Defender of Justice
anyone please? just make a new game , insert script, check if its working, and upload it for me...sorta like a demo, since the scipt dosen't come with one

baka...

dont we have a topic for implementing scripts anymore?

edit:

sigh...its the second sticky in this sub-board.

**
Rep: +0/-0Level 88
lol, Dante you are right, problem is I have tried that And still cant figure it out that is why I have posted here. I have seen other posts where people have not even attmpted to do something and then requst, but I did try my best....

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
dqam...I keep trying and everytime I get errors in difffernt spots...well like I said scripting is not my stong part..and well even putting them into a game is too hard for me...sorry I gave it a try, Im sure anyone else here could do this in 1 min tops.
Watch out for: HaloOfTheSun

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
You know, instead of asking someone to put the script in a project, why don't you post the errors your getting.

**
Rep: +0/-0Level 88
You know, instead of asking someone to put the script in a project, why don't you post the errors your getting.

I can't even understand half of them...they wouldnt make sense its not an error in the script I know that for sure its teh way Im putting the thing in That i know im doing something wrong

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
You don't understand them, but a damn scripter will. So post the error here so I can tell you what your doing wrong.

But if you don't want to post the error, fine, that saves me time.

**
Rep: +0/-0Level 88
here you go:

Line 302 no method error occurred undefiened method 'draw_frame_text' for #<Bitmap:0x16bfcb8>

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
Code: [Select]
#_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
#_/???????????? ? KGC_FrameShadowText?
#_/----------------------------------------------------------------------------
#_/?draw_text ????????????????????????
#_/  Provides functions to draw texts which framed or dropped shadow.
#_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

=begin
????? ?????? - Methods ???????????????????????
???? Class - Bitmap ????????????????????????????
? draw_frame_text(x, y, width, height, string[, align, frame_color])
? draw_frame_text(rect, string[, align, frame_color])
?   x, y          : ?????    [Integer]
?                   Destination.
?   width, height : ?????    [Integer]
?                   Size.
?   rect          : ????      [Rect]
?                   Rectangle.
?   string        : ?????    [String]
?                   Output text.
?   align         : ??????  [Integer]
?                   Alignment.
?   frame_color   : ????      [Color]
?                   Frame color.
? ??? frame_color ????????????????
? Draws a character string framed in 'frame_color'.
?
? draw_shadow_text(x, y, width, height, string[, align, frame_color])
? draw_shadow_text(rect, string[, align, frame_color])
?   x, y          : ?????    [Integer]
?                   Destination.
?   width, height : ?????    [Integer]
?                   Size.
?   rect          : ????      [Rect]
?                   Rectangle.
?   string        : ?????    [String]
?                   Output text.
?   align         : ??????  [Integer]
?                   Alignment.
?   frame_color   : ????      [Color]
?                   Frame color.
? ???????????????????
? Draws a character string which drops shadow to lower right.
?
????????????????????????????????????????
=end

$imported = {} if $imported == nil
$imported["FrameShadowText"] = true

#==============================================================================
# ? Bitmap
#==============================================================================

class Bitmap
  #--------------------------------------------------------------------------
  # ? ???????
  #     x, y, width, height, string[, align, frame_color]
  #     rect, string[, align, frame_color]
  #--------------------------------------------------------------------------
  def draw_frame_text(*args)
    # ????
    if args[0].is_a?(Rect)
      if args.size >= 2 && args.size <= 4
        # ?????????????????
        x, y = args[0].x, args[0].y
        width, height = args[0].width, args[0].height
        string = args[1]
        align = args[2].equal?(nil) ? 0 : args[2]
        frame_color = args[3].equal?(nil) ? Color.new(0, 0, 0) : args[3]
      else
        # ?????????????
        raise(ArgumentError, "wrong number of arguments(#{args.size} of #{args.size < 2 ? 2 : 4})")
        return
      end
    else
      if args.size >= 5 && args.size <= 7
        # ?????????????????
        x, y, width, height = args
        string = args[4]
        align = args[5].equal?(nil) ? 0 : args[5]
        frame_color = args[6].equal?(nil) ? Color.new(0, 0, 0) : args[6]
      else
        # ?????????????
        raise(ArgumentError, "wrong number of arguments(#{args.size} of #{args.size < 5 ? 5 : 7})")
        return
      end
    end
    # ??????
    origin_color = font.color.dup
    # ???
    font.color = frame_color
    draw_text(x - 1, y - 1, width, height, string, align)
    draw_text(x - 1, y + 1, width, height, string, align)
    draw_text(x + 1, y - 1, width, height, string, align)
    draw_text(x + 1, y + 1, width, height, string, align)
    # ??????
    font.color = origin_color
    draw_text(x, y, width, height, string, align)
  end
  #--------------------------------------------------------------------------
  # ? ?????
  #     x, y, width, height, string[, align, shadow_color]
  #     rect, string[, align, shadow_color]
  #--------------------------------------------------------------------------
  def draw_shadow_text(*args)
    # ????
    if args[0].is_a?(Rect)
      if args.size >= 2 && args.size <= 4
        # ?????????????????
        x, y = args[0].x, args[0].y
        width, height = args[0].width, args[0].height
        string = args[1]
        align = args[2].equal?(nil) ? 0 : args[2]
        shadow_color = args[3].equal?(nil) ? Color.new(0, 0, 0) : args[3]
      else
        # ?????????????
        raise(ArgumentError, "wrong number of arguments(#{args.size} of #{args.size < 2 ? 2 : 4})")
        return
      end
    else
      if args.size >= 5 && args.size <= 7
        # ?????????????????
        x, y, width, height = args
        string = args[4]
        align = args[5].equal?(nil) ? 0 : args[5]
        shadow_color = args[6].equal?(nil) ? Color.new(0, 0, 0) : args[6]
      else
        # ?????????????
        raise(ArgumentError, "wrong number of arguments(#{args.size} of #{args.size < 5 ? 5 : 7})")
        return
      end
    end
    # ??????
    origin_color = font.color.dup
    # ???
    font.color = shadow_color
    draw_text(x + 2, y + 2, width, height, string, align)
    # ??????
    font.color = origin_color
    draw_text(x, y, width, height, string, align)
  end
end

**
Rep: +0/-0Level 88
what do I do with that...I mean where do I insert that?

**
Rep: +0/-0Level 88
OK i think it works now, I realized I should insert that into a new script so I did...now just gota find the right grafics and insert them

**
Rep: +0/-0Level 88
strange I have inserted the right grafics files into the right folder...and it still says the same error unable to find the file?? Grafics/ACB/acb_order.png...


**
Rep: +0/-0Level 88
bump* what am I doing wrong now?

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
I just tried to make you a demo, and I get the same dam problem! lol maybe someone else will do it.
Watch out for: HaloOfTheSun

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
Did you guys make a folder called ACB in graphics and drop all the graphics from the site in there?

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
OK, lol my problem wasnt the wrong location it was that when I saved the files I saved them as a diff format! not png...ok so I got past that, but now all the heros have the same grafic, where do I define which character has which grafic? and the enemy's also they all use E1, but i have made an E2 and saved it in there.
Watch out for: HaloOfTheSun

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
you put a number like ai_01 or something like that, check the website.

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
man, im just about done working with this shit! its pissing me off, I do add the line for the image, and name it replacing xx with the hero's character number, but now they ALL use the same image as actor number 2 even when I left actor 1's image in their and defiined it with 01!!!!!!! same with enemy's all enemy's now show 02 image even the first enemy
Watch out for: HaloOfTheSun

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
acb_ai0X (X is the actor ID #) works.

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
i'll start to attempt this once more...when I get back home from school
Watch out for: HaloOfTheSun

pokeball :)OfflineMale
********
Cheese
Rep:
Level 95
?
NO dice! I have them named that way already...I think Im missing a new line and don't know how to write it..

ACB_ORDER_POSITION = [16, 2]
ACB_ORDER_ICON_POSITION = 16
ACB_ORDER_BACK = "acb_order.png"
ACB_ORDER_ICON_ACTOR = "acb_ai01{i}"
ACB_ORDER_ICON_ENEMY = "acb_ei01{i}"
ACB_ORDER_ICON_ENEMY = "acb_ei02{i}"
ACB_ORDER_ICON_DIGITS = 4
end

is that part right? or do I need to add
ACB_ORDER_ICON_ACTOR = "acb_ai02{i}"
Watch out for: HaloOfTheSun