Menu

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.

Show posts Menu

Topics - horusr

#1
Hey people!

I just completed and uploaded tech demo for a Rap Battle game idea.
(this demo is also my entry to My First Game Jam)
I used RON sprites and there is no music in demo.
And I had to write battles but I couldn't, so they are just replacement words, they are not fun.

Here the link for demo: https://horusr.itch.io/mfhj

Edit: As xBRANEx said, i wrote my ourpose in demo as dialog but forgot to write it here. Ok, here we go:

I wanted to make a game wgere you make your way with battling opponents, there is no story for now, but that is what i wanted to do. Something like Rapstar game series madi in ags, but not available in English.

The demo shows how battling mechanic works, there is two rounds, in first round your opponent punchs you with his words and then in your turn, you have 15 seconds(5 seconds for each punch) to select repunchable words from opponents punchs. There is 2 repunchable words per punch.

On second round, first turn is your so for thia tech demo, you need to select best punchs from dialog options, just like monkey island's combat.

For now, just select bwaks as repunchable words because I couldnt find anyone to write battle and i cant write battle in English.

Actually I am not satisfied with second round, i wanted to make player be able to select opponents body parts, but as I use assets i took from RON games, i wanted to skip that. I also think about making second round automatic, while you try to learn about your opponent before battle starts and punchs auto about thinks you learned. But, they are future plans.
#2
You don't play as a gentleman who needs to pee!
The game is non-Adventure game, actually it is not like a game. It is like Visual Novel without visual part!
We wasn't be able to complete our game's art, so I decided to make it a linear story.
You need to read a lot in this game!


Made by horusr, Chicky and Morgan LeFlay for MAGS July '17 "I Come Here Often"

horusr: Story, Scripting and Title Screen Art
Chicky: Awesome voice for intro!
Morgan LeFlay: Background Art, Puzzles(in this case, story details)


Don't forget to load your progres!
AGS Games Link
Itch.io Link
#3
I am working on some tech demo, it has rap battle based combat system,
where you choose words from enemy's punch to create repunchs,
so I need to write battles but I can't write it in English.

Code is not fully functional yet, still needs to code answers but since I don't have any writen punchs yet
(other then "I will bwak you" kind of sentences for testing), I will wait someone write battle first.

I kind of completed coding of tech demo for now but still need writer!
Also I use RON characters and a background for demo, any art help and some coding advice are welcome.
And while game is about rap battle, rap beat-ish musics are welcome too!
Found someone for music

I am planing to finish demo in a week and here is the progress so far on Github
#4
Song's name is Eller KonuŠŸur(Lets The Hands Speak). Project Hands Speak (here is a video from bbc) was out there for a while and yesterday they shared their first music video:

https://www.youtube.com/watch?v=rWxd0QXSHlI

edit: found English version of song.
#5
Beginners' Technical Questions / Timer Bar
Tue 18/07/2017 09:34:02
Hi there,

I want to add a timer bar in my game that shows how many time player has left. But I don't want it to show time in strings. I want it to be something like this(bottom right side of it):



And I created a button and draw rectangle on it with this code:

Code: ags
int timerstime = 0;
function battle_timer()
{
  DynamicSprite* sprite = DynamicSprite.Create(60, 10);
  DrawingSurface* surface = sprite.GetDrawingSurface();
  surface.DrawingColor = 1;
  surface.DrawRectangle(timerstime/10, 0, 60, 10);
  surface.DrawingColor = 2;
  surface.DrawRectangle(0, 0, timerstime/10, 10);
  Timer.NormalGraphic = sprite.Graphic;
  surface.Release();
  Wait(1);
}


function repeatedly_execute()
{
  if (timerstime > 0)
  {
    battle_timer();
    timerstime--;
  }
  else
  {
    gBattle.Visible = false;
  }
}


And it kinda works. The problem is if I don't add Wait() command it does not show bar at all.
SMF spam blocked by CleanTalk