Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Ununoctium

1
Well no not really, auto-targeting is pretty similar to what I want, but I wanted it so there is not really any targeting involved for direct/shock-wave skills, but they functioned the same way attacks did by hitting whatever was in its range.
2
Well essentially I was trying to make a modification of Blizz-ABS where direct/shock-wave skills would not need the targeting window and would process the same way regular attacks would (hitting whatever enemies are within the range of it), and so tried to modify skillitem_process, but did not get any results, so I was wondering if anyone here could help modify it.
3
RMXP Script Database / Re: [XP] Exp, HP and SP HUD
March 17, 2012, 10:07:22 pm
Well you could just divide the actors current experience by how much is necessary to get to the next level, and multiply it by 100.

Here's a script I made of such a thing a while ago(although it was for Window_Base):
Spoiler: ShowHide
 class Window_Base
   #--------------------------------------------------------------------------
  # * Draw EXP
  #     actor : actor
  #     x     : draw spot x-coordinate
  #     y     : draw spot y-coordinate
  #--------------------------------------------------------------------------
  def draw_actor_exp(actor, x, y)
    self.contents.font.color = system_color
    self.contents.draw_text(x, y, 24, 32, "E")
    self.contents.font.color = normal_color
    self.contents.draw_text(x + 120, y, 84, 32, exp_percent(actor).ceil.to_s + "%")
  end
  def exp_percent(actor)
    return actor.exp.to_f / actor.next_exp * 100
  end
end
class Game_Actor
  def next_exp
    return @exp_list[@level+1] > 0 ? @exp_list[@level+1] : "100"
  end
end
4
The PvP system's a little weird.
It'll display the amount of damage I or another player did, but nobody actually takes any damage.
5
RMXP Script Database / Re: [XP] RMX-OS
January 24, 2012, 09:23:46 pm
Nevermind, I got it to work using Hamachi.
6
RMXP Script Database / Re: [XP] RMX-OS
January 14, 2012, 08:44:32 pm
Could it be I messed something up with the config?
Spoiler: ShowHide

(Btw, I put in both IPs cuz I wasn't sure which one I was supposed to use, but my external IP address always shows up as offline)
7
RMXP Script Database / Re: [XP] RMX-OS
January 13, 2012, 03:26:03 am
Quote from: Blizzard on January 13, 2012, 03:01:08 am
Not just TCP, turn on both. I remember that I used UDP at one point, but I can't remember if I left that code. >.<

Well, I switched it to both but it still seems to be offline.

Is there anything else I'm supposed to be doing here? ._.
8
RMXP Script Database / Re: [XP] RMX-OS
January 13, 2012, 02:51:28 am
I'm in dire need of some help here.

Okay, well, I got everything setup fine and it ran perfectly for me.
Working Fine: ShowHide


However, when I try to get a friend play on the server, they just tell me it's offline.

I'm puzzled as to why this happens and I can't think of any explanation.

My port is forwarded, and my Ruby server file is working fine (I think...)
Spoiler: ShowHide





I don't have any firewalls enabled, so I don't think it's a firewall causing the problem.

Could someone please help me?