Hello Guest, please login or register.
Did you miss your activation email?
Login with username, password and session length.

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.

Topics - Streblo

Pages: [1]
1
Entertainment / cool looking mmorpg
« on: August 23, 2006, 01:43:22 pm »
http://www.cabalonline.net/default.aspx?wbs=0.0
check out the video.
Edit: I look kinda stupid with all these smileys seeing as how no one has found this as exciting as I have.

2
This didn't take me too long, it works pretty well if you're experienced with gm6

argument0: The distance at which the enemy will attack
argument1: The speed
argument2: whether or not to jump over obstacles
argument3: whether or not to jump over gaps
argument4: The right sprite
argument5: The left sprite
argument6: The x to attack (the destination)
argument7: The y to attack (the destination)
in scr_ai script enter
Code: [Select]
dis=point_distance(x,y,argument6,argument7)
dir=point_direction(x,y,argument6,argument7)
if dir>270 or dir<=90
{
dir_2=0
}
else
{
dir_2=180
}
if dis<argument0
{
if dir_2=0
{
sprite_index=argument4
if place_free(x+argument1,y)
{
x+=argument1
if place_free(x+argument1,y+1) and argument3=true and gravity=0
{
vspeed=-3.5
}
}
else
{
if gravity=0 and argument2=true
{
vspeed=-3.5
}
}
}
if dir_2=180
{
sprite_index=argument5
if place_free(x-argument1,y)
{
x-=argument1
if place_free(x-argument1,y+1) and argument3=true and gravity=0
{
vspeed=-3.5
}
}
else
{
if gravity=0 and argument2=true
{
vspeed=-3.5
}
}
}
}

oh yeah, for gravity, I suggest you use...
Code: [Select]
if place_free(x,y+1)
{
gravity=.1
}
else
{
gravity=0
}

3
Discussion / Looking for a way to go about learning C++...
« on: June 20, 2006, 05:56:05 am »
Looking for a way to go about learning C++, and I was wondering how any of you who use C++ learned (and please don't say colledge class). Thanks.

4
Graphics / My MC Iron knuckle (WIP) LINK FIXED
« on: June 20, 2006, 05:33:55 am »

 I like it, C+C please

5
Is there a way to take a sprite/animation from your game, and save it as a gif while the game is running?
EDITED:I need a DLL to do the above, can anyone help me?

6
Discussion / What ever happened to Loz:Rod of Leehna??
« on: April 21, 2006, 07:43:01 pm »
Awhile ago, I remember playing this really cool game, that looked like it would be finished.
It was loz:rod of leehna. I have been google-ing it and I can't find anything, anybody have the latest demo or new website?

Pages: [1]

Contact Us | Legal | Advertise Here
2013 © ZFGC, All Rights Reserved



Page created in 0.21 seconds with 34 queries.

anything