Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

DarkDino

Members
  • Posts

    229
  • Joined

  • Last visited

    Never

DarkDino's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. ![alt text](https://media.indiedb.com/images/games/1/28/27925/LogoVectorizado.png) **DESCRIPTION** DarkStory is a Free to Play 2D MMORPG where you can have fantastic adventures filled with action, magic, and friendships. The game has hundreds of playtime hours, and it is inspired in classic RPG games. You’ll find yourself in an epic role-playing experience where you can finish dungeons, fly on top of a dragon, fight amazing creatures, and explore the different continents with your friends. **LINKS** Join to the [Official DarkStory's Discord Channel](https://discordapp.com/invite/darkstoryonline) Download the game for free at [https://darkstory2d.com/download.php](https://darkstory2d.com/download.php) **FEATURES** * RPG in real time action * Mount System * Friendly Community * Battle Arena(PvP) * Unique Classes Mechanics * Exotic Quests * Party System * Enhancement System * Coop Quests(Up to 4 players) * Digging System * Crafting System * Forge System * Monster Cards and In-game collection * Achievements * Rewarded Progress * Customize your own Character * Unique Bosses * Mini-games * Fishing, Woodcutting and Minning professions * Daily Check **SCREENSHOTS** ![ScreenShot #1](https://media.indiedb.com/images/members/3/2753/2752199/profile/1.PNG) ![ScreenShot #2](https://media.indiedb.com/images/members/3/2753/2752199/profile/2.png) ![ScreenShot #3](https://media.indiedb.com/images/members/3/2753/2752199/profile/3.png) ![ScreenShot #4](https://i.gjcdn.net/data/games/2/227/164227/screenshots/5-bkawh9y9.png) **PRESENTATION** https://www.youtube.com/watch?v=8jB53y9CK_8 ***DarkStory is still in the Open Beta stage, so feel free to give us your feedback.***
  2. I hired Abhi few years back, He is incredibly fast and he helped me so much with DarkStory in the past. I'll definitively recommend his work. PS: Greetings bro!
  3. Amazing updates, i like so much this game :)
  4. Its amazing, i love the editor. Good work
  5. @'adiif1': > Good? or not? > > ``` > 'write name & level & hp > For i = 1 To Npc_HighIndex > If myTarget > 0 And Not NPC(MapNpc(myTarget).num).name = "" Then > RenderText Font_Default, NPC(MapNpc(myTarget).num).name, x + 10, y + 4, Yellow > RenderText Font_Default, MapNpc(myTarget).Vital(HP) & "/" & NPC(MapNpc(myTarget).num).HP, x + 55, y + 15, Red > RenderText Font_Default, NPC(MapNpc(myTarget).num).Level, x + 150, y + 4, Yellow > End If > Next > ``` @Adiif do you need change this to that code: ``` if myTarget > 0 And Not NPC(MapNpc(myTarget).num).Name = "" then RenderText Font_Default, NPC(MapNpc(myTarget).num).Name, x + 10, y + 4, Yellow RenderText Font_Default, MapNpc(myTarget).Vital(HP) & "/" & NPC(MapNpc(myTarget).num).HP, x + 55, y + 15, Red RenderText Font_Default, NPC(MapNpc(myTarget).num).Level, x + 150, y + 4, Yellow End If ```
  6. You can try choose the BackColor and TransparencyKey same color. Then this panels be transparent(I made this with FORMS and works fine) Or can try to show GUI with code, Do you need to see how its draw on EO 4, Eclipse EFF or another DX8 Custom.
  7. Hey bro you back on VB6 ;P!. I'll try to made same thing for DarkStory. I post a image when i finish : ].
  8. @Kaymak i think you get the best way. You help a lot of people with the code, they only need read a practice to understand how the multiple character works.
  9. @'Growlith1223': > You don't need the for loop lol, it's already rendering to myTarget and it's already checking before the sub is even being called lol, just a waste of cpu power Sure haha, I thought that this showed the details of several NPCs i don't law all code: ``` if myTarget > 0 And Not NPC(MapNpc(myTarget).num).Name = "" then RenderText Font_Default, NPC(MapNpc(myTarget).num).Name, x + 10, y + 4, Yellow RenderText Font_Default, MapNpc(myTarget).Vital(HP) & "/" & NPC(MapNpc(myTarget).num).HP, x + 55, y + 15, Red RenderText Font_Default, NPC(MapNpc(myTarget).num).Level, x + 150, y + 4, Yellow End If ```
  10. DarkDino

    Patience

    This is the best option. ![](http://i.gyazo.com/1d38c0e14c2bf2b43499557a7050c215.png)
  11. Make this little changes to optimize :3: ``` 'write name & level & hp For i = 1 To Npc_HighIndex if mapNpc(i).num > 0 And Not myTarget > Npc_HighIndex Then If MapNpc(myTarget).num = mapNpc(i).num Then RenderText Font_Default, NPC(MapNpc(myTarget).num).Name, x + 10, y + 4, Yellow RenderText Font_Default, MapNpc(myTarget).Vital(HP) & "/" & NPC(MapNpc(myTarget).num).HP, x + 55, y + 15, Red RenderText Font_Default, NPC(MapNpc(myTarget).num).Level, x + 150, y + 4, Yellow Exit For ' Leave the sub when this drawed End If End if Next ```
  12. Hahahaha like my questions on 2010 ;P.
  13. This tutorial will be looong. The first time I work on 3 Characters(2013) take me a week to fix BUGs. Now some engines have this feature. Excellent tutorial to apply on your own engines :).
  14. I like so much the Dragoon ;3\. Try to change the mobile screen to a pixel-game screen. The first impression is very important.
×
×
  • Create New...