Author Topic: Bernd Liefert --- The game I'm working on. (yeah this is an old topic)  (Read 2449 times)

Uploaded a new video today:   (the 6th)
http://www.youtube.com/watch?v=sP4rXIKLE40

BTW, this is what I had in mind when I made this topic:
http://forum.blockland.us/index.php?topic=218199.0

Links:
http://syerjchep.org/winrelease.zip

To-do:
Improve ingame text editor.
Find real sprites for the characters.
Get them animated.
Hopefully either make more levels and ais, or get others to help.

Even though it's like super pre-alpha, still, tell me what you think.
Oh, and if you could help at all with the artwork, let me know.

(also this is made with c++, but the ais are in lua)
« Last Edit: January 23, 2013, 09:26:31 PM by DrenDran »


Wait, so you butt raped the guy and the console came on the screen? Lol.

Yeah, so I need new character models.
Hell, if someone wanted to script some AI scripts that'd be great.

Related:
Code: [Select]
--example ai file
--
--Command dump:
--
--Action commands:
--fire(robotID)
--jump(robotID)
--fall(robotID)
--stop(robotID)
--moveRight(robotID)
--moveLeft(robotID)
--
--Status commands:
--getRuntime()
--getHealth(robotID)
--getPosX(robotID)
--getPosY(robotID)
--getVelX(robotID)
--getVelY(robotID)
--getTile(x,y)
--getPlayerX()
--getPlayerY()
--
--Other:
--echo(message)
--setRobotVar(robotID,variableName,variableValue)
--getRobotVar(robotID,variableName)
--
--The script below will only fire if the player is close enough.
--It will also change directions to face the player.

playerx = getPlayerX()
playery = getPlayerY()
botx = getPosX(robotID)
boty = getPosY(robotID)

distancex = math.abs(playerx-botx)
distancey = math.abs(playery-boty)

totaldistance = distancex+distancey

if totaldistance < 500 then
 fire(robotID)
end

if playerx > botx then
 moveRight(robotID)
else
moveLeft(robotID)
 end
stop(robotID)


Really? Nothing?
I'll try again once I've added more.

Really? Nothing?
I'll try again once I've added more.
Great game, 10/10.
Definitely will purchase once you've perked the game up a bit.

Great game, 10/10.
Definitely will purchase once you've perked the game up a bit.
cant tell if serious but thanks for bump

Added new video, should be watched in high quality.
Also, I might post the game itself for linux and windows soon.
Gotta make a couple more levels. (note that posting it doesn't mean it's done, obviously)




Once again, anyone who wants to make sprites or even help make more levels, let me know.

I don't get what you're supposed to do?

This looks really interesting.

It's a good idea in my opinion. I would try it out once it's been updated a bit more.

cool, could be a good way to teach people how to code

Just made a windows version.
Giving it to my cousin to test while I watch on skype.


I guess I might post it depending on how it goes.

In windows the scripting screen sometimes crashes. :(

Why do the functions take "robotID"?

Why do the functions take "robotID"?
Its how the lua functions know what robot is sending them.