Jump to content


Miguel Rosso

Member Since 26 Jun 2012
Offline Last Active Feb 06 2013 08:15 AM

Topics I've Started

3D mouse clicking?

17 December 2012 - 10:12 PM

Hi! I'm making a 3D first-person game, in which the only problem I'm having is the object's interactivity. I want the player to be able to click on a door to open it, or click on some keys to take them, etc, but I just can't figure out how. If you need the game files, I can give them to you. Thanks!

8BIT Spriter needed!

15 December 2012 - 02:01 PM

Hi! I'm going to make an 8bit singleplayer and multiplayer version of DayZ. I will make all the programming, but I simply suck at spriting!! =(
The artistic style would be minicraft style or the Eric Ruth Games' 8bit left 4 dead style.
The terrain will be randomly generated, and there'll be hostile and friendly survivors.
What I'm actually looking for, is:
-Player sprite (with different guns)
-Zombie sprite
-Random buildings (malls, schools, houses, etc)
-Survivor sprites (with different guns)
-Dropped guns and items

I know this is a huge request, but I really need a spriter! D:
Of course, I'll give credit to the one (or ones) who help me, but, since this game won't be for sale, I will not pay to the spriters.
Maybe this game will be ported to mobile platforms on the future. In that case, the game will probably cost around 0'99 bucks, and the spriter will recieve a part of the benefits.
You can contact me at:
miguelrossoyt@gmail.com
Thank You!

LPWinAPI ListBox Help!

03 September 2012 - 11:05 PM

Hello. I'm making a program in which I have a ListBox Control. The thing is, I don't know how to add a scroll bar to it. This is the ListBox control code:
global.list = api_listbox_create(window_handle(),x,y,310,400,WS_VISIBLE|WS_CHILD|LBS_DISABLENOSCROLL,0)
I tried adding this to it:
scrollbar = api_scrollbar_create(global.list,290,100,16,40,WS_VISIBLE|WS_CHILD|SBS_VERT,0);
But it just makes lots of buggy stuff.
Do you know how to add a scroll bar to a List Box control? Thanks!

For loop error ' Cannot compare arguments'

01 September 2012 - 02:54 PM

Hi.
I'm having a trouble with the for() loop. I'm not really experienced in for loops, but I've been programming for several years now.
This is the code I have:
aa = get_string("Amount of answers", "A.A.")
global.text = "... # "
for (i=0; i>aa; i+= 1){
global.text += "if %a% = " + i + "# "
}
When I run the game, this error appears:
   for (i=0; i>aa; i+= 1){
               ^
at position 14: Cannot compare arguments.

Any help??

variable=keyboard_string Help

27 June 2012 - 09:25 AM

Hi! I'm making a game with a 1-Line textbox which draws the text I'm typing and then, when I press Enter, it changes the argument0 of a script to what I have typed.
Is it possible to:
[In Step event]
variable1=keyboard_string
[In the draw event]
draw_text(x,y,string(variable1))
[In the Press Enter event]
scr_loadtext(variable1)
Please answer.