Leon
Legend-
Content Count
1,713 -
Joined
-
Last visited
-
Days Won
23
Content Type
Profiles
Forums
Blogs
Downloads
Calendar
Gallery
Everything posted by Leon
-
Pot-holes, sending players down a floor. that was one of my favorites.
-
Greetings, my minions and others. If you are reading this, you must be rather interested in my recent activities; most of which are either boring, surprising, or predictable. Anyway, let's recap. The last several months, I have been rather absent, checking in from time to time. My reason for my disappearance is quite simple; Netflix, PS3, and lack of interest. Because of this, I have done little with RMXP aside from assisting the occasional person; or at least trying to. Before my departure, I had 2 games going, and the first game of a spoof series posted. Ironically, the spoof game got much better reviews than the two demos of the other games. To this effect, I decided to stop with the traditional JRPG, even with new systems, because they are a dying breed. Disheartening, but true. With these new thoughts and ideas, you will either see me posting new systems soon, or new demos to show other ways RMXP can be used. I posted a labyrinth system already, which didn't go over too well due to the outdated graphics used. If I could, I'd reproduce it with 100x better graphics, and make it look rather bitchin. On a whimsical note, I agreed to the rules, but I must admit, the 'no sexually oriented contents' kinda depressed me. So, I will break the rules, and I hope I merely get a warning. Yes, I am a mod, and probably deserved to be punished for this, but I can't help myself... Tits. There, something sexual. xD Well, my minions and others, let us hope this is the beginning of my return! I soon hope to reign over this small corner of the internet! Bwahaha!!!
-
Ready? This will be tedious: use this command: $game_party.locked = false in a Script... command from event.
-
Oh, Zeriab, such a savior. And here I wanted to toy with Kiri! I never get to! -pouts-
-
Your error is with your 'if' statement. look at some examples. ;P
-
Lol. I musta taught kiri well... He's helping ppl w/ my scripts.
-
Au Revoir
-
I recently picked up Darksiders as part of a 50% off deal at Gamestop. Well, I thought I'd post a review. Without further ado, here we go: Synopsis: Since the dawn of time, Heaven and Hell have been in an eternal struggle throughout the universe; until the creation of the Kingdom of Man. Because man is unprepared for the war, a Council is formed to uphold a simple law: The war will not begin until the seven seals are broken, bringing the four horsemen of the apocalypse; Fury, War, Strife, and Death. However, something has gone wrong, and the eternal war has started, without the seven seals being broken. The horseman, War, has been summoned to pass judgment, and is branded the beginner of the war by the Council. Now, to clear his name, War must find who is responsible, and pass judgment on them, else the Council will see that War is removed, permanently. Graphics: 8/10 Some excellent graphics, but not the best I've seen. The lip-sync is a little off, and seems just SLIGHTLY cartoon-ish for the mood of the game. Overall, decent, I must say. Music: 6/10 Lackluster, to say the least. Seems either non-existent or lacking in feeling. Truly a disappointment. Gameplay: 9.5/10 With a few little piss-ant things I would have changed personally, the gameplay was exquisite. Imagine God of War meets Legend of Zelda; the best of both worlds, and truly artfully done. Story: 8/10 Honestly, the only reason it doesn't get a full 10, is because 80% of the time, it feels like you are doing collection quests in the same fashion as a Legend of Zelda game. Go to this place, kill this boss, get this item. Pretty simple, but the beginning and end of the story; simple perfect. Great feeling, dialogue, and an EXCELLENT ending. Overall: 8.5/10 This game may seem slow at times, few and far between, mind you, but you should seriously consider this game. Around 16 hours of playtime total, on normal, which is decent.
-
cool, lemme know if you have any q's.
-
I never mastered eventing, and i mastered scripting. check out the lesson section, on scripting. I have 3 units posted.
-
first one does look better. for any references, look at the sprites with black hair. I'm just trying to help, and I apologize if i seem negative.
-
Here is your script! #=============================================================================== # Credits Script, for Chief # by Leon_Westbrooke # v. 1.0 #------------------------------------------------------------------------------- # Instructions: # Place under all scripts, and above Main # Fill out the areas below, in the module. # Call using $scene = Scene_Credits.new # #=============================================================================== #=============================================================================== # Module #=============================================================================== module Credits #============================================================================= # Set Game Title settings #============================================================================= Title_Font_Type = "Monotype Corsiva" Title_Font_Size = 30 #============================================================================= # Set Game Subtitle settings #============================================================================= Subtitle_Font_Type = "Monotype Corsiva" Subtitle_Font_Size = 26 #============================================================================= # Set Game Credits settings #============================================================================= Credits_Font_Type = "Monotype Corsiva" Credits_Font_Size = 22 #============================================================================= # Set Background #============================================================================= Background_Music = "034-Heaven01" Background_Image = "" #============================================================================= # Set Credits listings. # Use keys: "Title" for the title, "Subtitle" for the subtitle, and numbers, # IN ORDER, starting at 0. #============================================================================= Credits_Listing = { "Title" => "Game Title", "Subtitle" => "Game Subtitle", 0 => "Lead Writer..................Mike", 1 => "Lead Designer..................Mike", 2 => "Lead Scripter..................Mike" } end #=============================================================================== # End Module #=============================================================================== #=============================================================================== # * Window_Credits #=============================================================================== class Window_Credits < Window_Base def initialize super(0, 480, 640, 480) @size = 0 for i in 0...Credits::Credits_Listing.size @size += 1 end @size += 1 self.contents = Bitmap.new(width - 32, 32 * @size) self.opacity = 0 self.height = @size * 32 + 32 refresh end def refresh self.contents.clear cr = Credits self.contents.font.size = cr::Title_Font_Size self.contents.font.name = cr::Title_Font_Type self.contents.draw_text(0, 0, 608, 32, cr::Credits_Listing["Title"], 1) self.contents.font.size = cr::Subtitle_Font_Size self.contents.font.name = cr::Subtitle_Font_Type self.contents.draw_text(0, 48, 608, 32, cr::Credits_Listing["Subtitle"], 1) self.contents.font.size = cr::Credits_Font_Size self.contents.font.name = cr::Credits_Font_Type @credit_size = (cr::Credits_Listing.size - 2) for i in 0...@credit_size y = i * 32 + 96 self.contents.draw_text(0, y, 608, 32, cr::Credits_Listing[i], 1) end end end #=============================================================================== # END Window_Credits #=============================================================================== #=============================================================================== # * Scene_Credits #=============================================================================== class Scene_Credits def main @credits_window = Window_Credits.new @background = Sprite.new $game_system.bgm_memorize audio = Credits::Background_Music Audio.bgm_play("Audio/BGM/" + audio, 100, 80) @background.bitmap = RPG::Cache.picture(Credits::Background_Image) @wait = 0 Graphics.transition loop do Graphics.update Input.update @wait += 1 update if $scene != self break end end Graphics.freeze @background.dispose @credits_window.dispose end def update if @credits_window.y >= (@credits_window.height * -1) if Input.trigger?(Input::A) print @credits_window.y print (@credits_window.height * -1) end if @wait % 2 == 1 @credits_window.y -= 1 end else close end if Input.trigger?(Input::B) or Input.trigger?(Input::C) close end end def close $game_system.bgm_restore $scene = Scene_Map.new end end #=============================================================================== # END Scene_Credits #===============================================================================
-
okay, let me finish something for Chief, and you can send me a request. mock-ups and descriptions will be needed, to ensure accuracy.
-
teh avi file i know nothing of, but i have a credits script for you, that will work. i'll make it more personalized for ya. make it work great.
-
lol. pol, those scripts aren't hard to create, either. jsut needs to be specific.
-
I meant at least planned. listed, as it were. I want to make sure there is a solid plan for this project, before I do the scripting for it.
-
you give me a solid mock-up and description on the credit's system, and I'll tell you if i can do that one, to start.
-
I might be able to assist in the scripting. You show me at least 100 pokemon, and 5 of the 8 usual gyms, and I'll be solid as I can be.
-
The hair needs a sheen to it.
-
Should the date for Independence day be changed?
Leon replied to FranklinX's topic in Debate and Mature Discussion
The phrase 'my people' segregrates your race from every other race. And you cannot say it doesn't, because of what was said thereafter. Ergo, logically, a racist statement. Since it is the truth, it cannot be considered flaming. -
Should the date for Independence day be changed?
Leon replied to FranklinX's topic in Debate and Mature Discussion
"My people and many other races were not free on July 4th." Racist, 'nough said. Second, where did I flame in that? Seriously... Third, I am a huge supporter of MLK, and all he stood for. -
Should the date for Independence day be changed?
Leon replied to FranklinX's topic in Debate and Mature Discussion
First, Independence vs. Freedom: The meaning of independence for Independence Day is as stated: for the country against England. Second: The sentence is from an old adage. Read more. Third: You can't debate if you haven't a leg to stand on. You want a day for 'your' people? You have Black History Month, BET, and a number of other things exclusive to 'your' race. You claim it is a 'white man' holiday? Even if it WAS true (and I don't htink it is), that is ONE day vs. the month AND television channel, not to mention countless other things, such as the NAACP, that 'your' people have. I wasn't intending to insult your intelligence. I am just sick of 'your' racism on this site. P.S. I am only being racist in the sarcastic sense, hence the quote marks and italics. -
Should the date for Independence day be changed?
Leon replied to FranklinX's topic in Debate and Mature Discussion
Independence day is celebrated as the day that the 13 colonies became the United States of America, a separate country from the Brits. It has NOTHING to do with 'freedom', other than the colonies being freed from being part of England. It has NOTHING to do with race, creed, sex, or bubblegum flavor. Get over the racist bullshit, all ready. Everyone bitches about black slaves? Sorry, but whites and jews were slaves long before hte blacks, jews were slaves longer than any other breed of human (and they DON'T bitch about it). Further, RKO, you saying 'My People' and hten saying racism is a bad thing is hypocritical. Pick one side, racist or not, and stick to it. You stay on the fence long enough, and you're gonna get your ass impaled on it. As for freedom as a whole, the country STILL isn't free. I don't know where you get your info from, but even since the 60's, there is no true freedom. Gays cannot be free without persecution. Nor can cultists, Though their religion is bonafied. I don't see the point of this debate, other than to make it a thing against all the 'white people' from the past. It is bullshit to bring it up. Let dead dogs lie, and give it up already. One last note, the meaning of 'Independence Day': An Independence Day is an annual celebration commemorating the anniversary of a nation's assumption of independent statehood, usually after ceasing to be a colony or part of another state, more rarely after the end of a military occupation. In the United States, Independence Day, commonly known as the Fourth of July, is a federal holiday commemorating the adoption of the Declaration of Independence on July 4, 1776, declaring independence from the Kingdom of Great Britain. Crack a damn book sometime, and maybe you'll find the TRUE meaning of something.