Jan 8, 2015 at 12:13 PM
Senior Member
"This is the greatest handgun ever made! You have to ask yourself, do I feel lucky?"
Join Date: Oct 11, 2014
Location: West Philadelphia (Born and raised)
Posts: 94
I personally like cave editor, because it shoves everything in your face, nice and simple. I have to go through countless menus to get what I want in BL. CE is a really good editor for news like me.
*Newbz like me
 
Jan 8, 2015 at 2:18 PM
Little Bitch in Sheep Clothing
"..."
Join Date: Nov 16, 2011
Location: New Zealand/ Thailand
Posts: 352
Age: 25
Has anyone made an ASM hack that make ESC resume? I mean jesus christ.
 
Jan 8, 2015 at 2:28 PM
Based Member
"Life begins and ends with Nu."
Join Date: Dec 31, 2011
Location: United States
Posts: 2307
Age: 27
Gavintendo64 said:
So how would you change the music files to mp3?
There's gotta be a mod that does that.
There's no program that directly and automatically converts .org files to .mp3 files, let alone a mod. You'll have to play the desired song in orgmaker (or preferably orgplayer) while using a program such as audacity to record your computer's sound. That's what andwhyisit did for all the mp3 downloads you see on the site.
 
Jan 8, 2015 at 3:03 PM
Little Bitch in Sheep Clothing
"..."
Join Date: Nov 16, 2011
Location: New Zealand/ Thailand
Posts: 352
Age: 25
What's the size of the bounding box size over Quote's sprite?
 
Jan 8, 2015 at 8:45 PM
In my body, in my head
Forum Moderator
"Life begins and ends with Nu."
Join Date: Aug 28, 2009
Location: The Purple Zone
Posts: 5998
no, it's not, assuming he means the hitbox for the character
it's something smaller like 10x14
 
Jan 8, 2015 at 8:52 PM
In my body, in my head
Forum Moderator
"Life begins and ends with Nu."
Join Date: Aug 28, 2009
Location: The Purple Zone
Posts: 5998
I had assumed that he was capable of using his ocular orbs and figuring that out himself
 
Jan 9, 2015 at 1:00 AM
Little Bitch in Sheep Clothing
"..."
Join Date: Nov 16, 2011
Location: New Zealand/ Thailand
Posts: 352
Age: 25
Well yeah, I figured it was 16 x 16, but I'm paranoid and wanted confirmation.
 
Jan 9, 2015 at 2:50 AM
Junior Member
"Fresh from the Bakery"
Join Date: Jan 9, 2015
Location: Hell
Posts: 12
Yo, this might be redundant but!! I haven't found what I was looking for at all. All I need is a way to have a variable (? is that the right term) that I can add and subtract to freely, and have certain events/dialogue boxes trigger if that value is less than, greater than, or equal, etc... I hope I'm making some sense! That's all I really need for a certain mod I'm doing, so I would appreciate the help a lot!!
 
Jan 9, 2015 at 2:51 AM
Its dark in here
"Deaths: 4000"
Join Date: Nov 21, 2013
Location: farther
Posts: 922
Age: 27
yanderesunflower said:
Yo, this might be redundant but!! I haven't found what I was looking for at all. All I need is a way to have a variable (? is that the right term) that I can add and subtract to freely, and have certain events/dialogue boxes trigger if that value is less than, greater than, or equal, etc... I hope I'm making some sense! That's all I really need for a certain mod I'm doing, so I would appreciate the help a lot!!
you mean like flags?
 
Jan 9, 2015 at 3:03 AM
Junior Member
"Fresh from the Bakery"
Join Date: Jan 9, 2015
Location: Hell
Posts: 12
Goerge Bobicles said:
you mean like flags?
Probably, yeah! I'm really new to programming, so could you give me a quick rundown on how to use flags?
 
Jan 9, 2015 at 3:13 AM
thinks dogs are cool
"All your forum are belong to us!"
Join Date: Apr 6, 2014
Location: a bathroom
Posts: 620
flags are basically placeholders for things

there are several commands in which flags are commonly associated with

>FL+ sets flags, and you can attach flags to entities using an editor, such as booster's lab or cave editor, although it's been confirmed that booster's lab is the better of the two.
<FLJ jumps to an event should a flag be set
for example, should I do <FL+0054, I can then do <FLJ0054:EVENT#HERE to jump to an event.

so tl;dr: flags are basically keys to hidden events or whatever

ALSO! I recommend you check out the Grand Gallery of Modding Tutorials and the "official" Introduction to Modding guide, by Carrotlord
 
Last edited by a moderator:
Jan 9, 2015 at 11:19 AM
Based Member
"Life begins and ends with Nu."
Join Date: Dec 31, 2011
Location: United States
Posts: 2307
Age: 27
One thing that might help is thinking of flags a boolean values. Think of each flag as its own boolean variable. You can use flags 100-7999.

Basically
Code:
<FL+0566
is the same thing as
Code:
flag_0566 = true;
and
Code:
<FL-0566
is the same thing as
Code:
flag_0566 = false;
Additionally, doing
Code:
<FLJ0566:0400
is basically the same thing as
Code:
if(flag_0566)
    goto event 0400;
If you're familiar with programming, then thinking of it that way can really help. You said you were new to programming, so I'm not sure how much you know, but boolean values are a fairly basic concept, so hopefully this helped...
 
Jan 9, 2015 at 1:38 PM
thinks dogs are cool
"All your forum are belong to us!"
Join Date: Apr 6, 2014
Location: a bathroom
Posts: 620
or you could just
use BL's built-in Flag List so that you never need to worry about keeping them in a text document
 
Jan 9, 2015 at 2:37 PM
Based Member
"Life begins and ends with Nu."
Join Date: Dec 31, 2011
Location: United States
Posts: 2307
Age: 27
Paths said:
or you could just
use BL's built-in Flag List so that you never need to worry about keeping them in a text document
BL's flag listing feature only lists the map and event number in which the flag was used, which can be quite useful for dissecting other people's mods and such. But if you're developing a mod yourself, making your own documentation on the specific purposes each flag is very necessary since BL isn't nearly clever enough to figure that out by itself.
 
Top