• Welcome to Smashboards, the world's largest Super Smash Brothers community! Over 250,000 Smash Bros. fans from around the world have come to discuss these great games in over 19 million posts!

    You are currently viewing our boards as a visitor. Click here to sign up right now and start on your path in the Smash community!

The Falcon Social

Darky-Sama

Smash Lord
Joined
Sep 12, 2008
Messages
1,936
Location
Salisbury, Maryland
NNID
Darky-Sama
Toomanyobsessions.jpeg

Also, Falcon is a fun character. Especially those moments where a Peach misses the ledge on her last stock and decides to just float down slowly to her death-- and you're all "lolno," jump off a ledge backwards and knee her into the bottom of the stage.
 

Lionman

Smash Champion
Joined
May 21, 2008
Messages
2,531
Location
Logroño, Spain
Are you going to main Falcon in the next smash?

I will but probably will play the most broken char for tournaments

i hope its falcon

Also, i will use the newcomer from F-Zero (Probably will be Blackshadows)
 

CaptainFalcon9000

Smash Ace
Joined
Apr 15, 2011
Messages
920
Location
Cabimas, Venezuela
Toomanyobsessions.jpeg

Also, Falcon is a fun character. Especially those moments where a Peach misses the ledge on her last stock and decides to just float down slowly to her death-- and you're all "lolno," jump off a ledge backwards and knee her into the bottom of the stage.
also it is always fun to land an UP-B (Falcon Dive) on a high tier char like meta knight or snake, you almost want to scream "YES!" along with falcon.
 

Claire Diviner

President
Joined
Oct 16, 2010
Messages
7,493
Location
Indian Orchard, MA
NNID
ClaireDiviner
I loved the opening to Mummies Alive. Sadly, a lot of the time, I had to leave for the school bus about the same time the show aired, so I never actually got to watch the show.
 

CaptainFalcon9000

Smash Ace
Joined
Apr 15, 2011
Messages
920
Location
Cabimas, Venezuela
http://www.youtube.com/watch?NR=1&v=z51S42t-dnk this show was amazing

also, sunred is a parody show, there are no real fights, only in the opening xD but its really funny
w-wow... i never knew something like that existed, but does any one remember this one:

http://www.youtube.com/watch?v=eKDjYuFUgpc

all i remember is that carmen was a badass, she even stealed a whole island and hid it in an archipelago, and whenever the guys were about to catch her she just escapes in a badass way while smiling back at them.
 

Flame Hyenard

Smash Lord
Joined
Jul 3, 2010
Messages
1,900
Location
France
Everyone is worrying about the end of the world. And I'm just sitting here, replying to the awesome board that is the Falcon Board.
 

Lionman

Smash Champion
Joined
May 21, 2008
Messages
2,531
Location
Logroño, Spain
Dunno, random stuff

im checking tutorials but there is so many theorycraft :I


Im trying to make portraits appear in the battle but i have to change the code
 

Flame Hyenard

Smash Lord
Joined
Jul 3, 2010
Messages
1,900
Location
France
You mean the facesets ? I have the script if you want it :
class Window_Base < Window
def draw_face(face_name, face_index, x, y, size = 96, opacity = 255)
bitmap = Cache.face(face_name)
rect = Rect.new(0, 0, 0, 0)
rect.x = face_index % 4 * 96 + (96 - size) / 2
rect.y = face_index / 4 * 96 + (96 - size) / 2
rect.width = size
rect.height = size
self.contents.blt(x, y, bitmap, rect,opacity)
bitmap.dispose
end
def draw_actor_face(actor, x, y, size = 96, opacity = 255)
draw_face(actor.face_name, actor.face_index, x, y, size, opacity)
end
end

class Window_BattleStatus < Window_Selectable

def initialize
super(0, 0, 416, 128)
@column_max = 4
@spacing = 0
refresh
self.active = false
end
def refresh
self.contents.clear
@item_max = $game_party.members.size
for i in 0...@item_max
draw_faces(i)
end
for i in 0...@item_max
draw_item(i)
end
end
def draw_faces(index)
actor = $game_party.members[index]
draw_actor_face(actor, actor.index * 96 + 2, 0, 96, 100)
end
def draw_item(index)
self.contents.font.color = normal_color
actor = $game_party.members[index]
draw_actor_name(actor, index * 96 + 2, 0)
draw_actor_state(actor, index * 96 + 2, 18, 48)
draw_actor_hp(actor, index * 96 + 2, 56, 86)
draw_actor_mp(actor, index * 96 + 2, 74, 86)
end
end


Go in Scripts (paper & pencil icon), create a new title under Material called "BattleFaceset" and copy-paste what's in the spoiler. If you did it right, you should see the facesets of your character in battle.
 
Top Bottom