|
I'm Stupid!! Displaying 1-6 of 6 total.
1
BlueStar
|
I just thought I'd bring up the fact that 2/3 of my
computers are now dead, and I have lost access to all
of my VERGE files, projects, and even artwork.
I don't even have speakers on this lousy machine, so
things are looking bad for the reunion between
me and VERGE, so I'll just try to hang around the community
and whatnot. I could probably still draw tiles if anyone
wanted, since it doesn't require any sound. :P
For those who don't know me, feel free to check out my
old games. The Tears of Vengeance demos, Beyond the Blue
Horizon (if you can find it), and my favorite, License to
Poop. And you can email me at mattrock@softhome.net
I'll be around!!
Love, BS
Posted on 2000-11-10 14:59:26
|
jesusfreak
|
do you know anything about scripting?? sososo, ok, do you know how to make a text event run only once? see i have a map and there is a little girl and she argues and calls the player names, and the player gets mad at her, is there a way to make it so thsat the little girl never talks to the player again?
I am a new person to verge
People i like..
mythrill
the speed bump
steven marine
ear
KarmaCult
Loritian
and a few other poor souls
Posted on 2000-11-10 15:09:02
|
BlueStar
|
You have to use flags. Flags rock!
Caca!
Posted on 2000-11-10 15:30:02
|
jesusfreak
|
a hem, first..: my system.vc goes like soso,
could you pretty plaes correct this/ese scripts so that the little girl never talks after the one time i talk to her??
void Text(string text1, string text2 string text3)
{
int y;
// loop until B1 is pressed
while (!b1)
{
//draw el mapo
Render();
// draw the text box
SetLucent(0);
Rect(0,(ScreenY/2+58),ScreenX-1,ScreenY-1,53);
Rect(1,(ScreenY/2+58)+1,ScreenX-2,ScreenY-2,45);
RectFill(2,(ScreenY/2+58)+2,ScreenX-3,ScreenY-3,24);
SetLucent(0);
// draw the text
y=ScreenY-(ScreenY/4); // position font output at the upper-left of the textbox
GotoXY(0, y); PrintString(0, text1); y+=FontHeight(0);
GotoXY(0, y); PrintString(0, text2); y+=FontHeight(0);
GotoXY(0, y); PrintString(0, text3);
// update video memory
ShowPage();
UpdateControls();
}
UnPress(1);
}
I am a new person to verge
People i like..
mythrill
the speed bump
steven marine
ear
KarmaCult
Loritian
and a few other poor souls
Posted on 2000-11-10 15:36:59
|
Hatchet
|
The command itself doesn't need to be changed... you code it in your map events so that it only runs once based on the value of a variable. If you don't understand what I said, maybe you should read the FAQ and Newbie Guide rather than pestering us constantly. I'm sorry to be so blunt, but you HAVE to be able to figure things out on your own if you expect to have any success.
-Hatchet
Posted on 2000-11-10 18:00:24
|
Rukus
|
I recommend reading V2.5 reference file, Vergesource FAQ, V2 Newbie guide, a bit of C++ books (Beginners guide to c++, learn C++ in 21 days etc.) and Aens Tutorials. All of these can be found @ the Vergesource
Posted on 2000-11-11 03:49:39
|
Displaying 1-6 of 6 total.
1
|
|