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

[EO] Adding Mini HP Bars for Npcs


Kimimaru
 Share

Recommended Posts

  • Replies 81
  • Created
  • Last Reply

Top Posters In This Topic

@delgado88:

> Please dont be vulgar, if you do not know don't answer
> if you dont handle this

Do not know? It's my bloody source code. I know everything there is to know about it. I just told you what to do. I'm not going to pleasant about it when all you've done so far is go around the various tutorials blaming the creators for your own idiocy.
Link to comment
Share on other sites

That was the answer. Vanilla means a copy you haven't messed with.
He was vulgar but he is Robin.
If you want to you EO you better know lingo such as vanilla version and know how to program… and get used to Robin. He has more than earned to dislike arrogance.

Warning - while you were typing a new reply has been posted. You may wish to review your post.
Link to comment
Share on other sites

@Robin:

> @delgado88:
>
> > Please dont be vulgar, if you do not know don't answer
> > if you dont handle this
>
> Do not know? It's my bloody source code. I know everything there is to know about it. I just told you what to do. I'm not going to pleasant about it when all you've done so far is go around the various tutorials blaming the creators for your own idiocy.

Well im not a programmer, but i want to learn something if you do not have anything against
You answer dont help me, even if you are main programmer of this Eclipse

And if you know answer and you answer in such that style? i does not want such answer
Link to comment
Share on other sites

@delgado88:

> @Robin:
>
> > @delgado88:
> >
> > > Please dont be vulgar, if you do not know don't answer
> > > if you dont handle this
> >
> > Do not know? It's my bloody source code. I know everything there is to know about it. I just told you what to do. I'm not going to pleasant about it when all you've done so far is go around the various tutorials blaming the creators for your own idiocy.
>
> Well im not a programmer, but I want to learn something if you do not have anything against
> You answer dont help me, even if you are main programmer of this Eclipse
>
> And if you know answer and you answer in such that style? I does not want such answer

Just by reading this I can tell that Eclipse Origins is not for you so I will save Robin some time and say it…. Go back to Eclipse stable, learn a thing or two about programming, clean up your grammar, then com back to Eclipse Origins.

Eclipse Origins is for those who have some kind of programming knowledge. If you don't know anything about VB6 then Origins is definitely not for you.
Link to comment
Share on other sites

@Kiliage:

> Hey man,I think I did all and I get error.
> Compile Error:
> Next witchout For
>
> I can send ss if u want,pls help

Yeah, you didn't add it in correctly because I didn't create a new For Loop at all in the tutorial. Double-check to make sure that you've added in the part in **Sub Render_Graphics** correctly because that's the only part that has anything to do with a For Loop.
Link to comment
Share on other sites

You did it correctly, but for some reason you're missing the end of the **If NumCharacters > 0 Then** statement. Find this:

```
' Npcs
            For i = 1 To MAX_MAP_NPCS
                ' Draw out npc hp bars
                Call BltNpcHP(i)
                If MapNpc(i).Y = Y Then
                    Call BltNpc(i)
                End If
            Next
```
Replace it with this:

```
' Npcs
            For i = 1 To MAX_MAP_NPCS
                ' Draw out npc hp bars
                Call BltNpcHP(i)
                If MapNpc(i).Y = Y Then
                    Call BltNpc(i)
                End If
            Next
        End If
```
Link to comment
Share on other sites

@Kimimaru:

> You did it correctly, but for some reason you're missing the end of the **If NumCharacters > 0 Then** statement. Find this:
>
> ```
> ' Npcs
>             For I = 1 To MAX_MAP_NPCS
>                 ' Draw out npc hp bars
>                 Call BltNpcHP(I)
>                 If MapNpc(I).Y = Y Then
>                     Call BltNpc(I)
>                 End If
>             Next
> ```
> Replace it with this:
>
> ```
> ' Npcs
>             For I = 1 To MAX_MAP_NPCS
>                 ' Draw out npc hp bars
>                 Call BltNpcHP(I)
>                 If MapNpc(I).Y = Y Then
>                     Call BltNpc(I)
>                 End If
>             Next
>         End If
> ```

I've had that same problem and when I did what you did in ^^^that^^^ quote it worked :D thanks!
Link to comment
Share on other sites

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share


×
×
  • Create New...