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

[EO] Alatar's Quest System v1.2


Alatar
 Share

Recommended Posts

@wow050:

> What client?

1) you know you have to use VB6 to add this right?
2) you Know you have to add it to the server AND client vbp files, IN VB6, right?
3) you know where those files are right?
4) you know you can ONLY USE VB6 right?
5) you know you have to save and compile these files every single time you edit them right?

If you have answered "NO" to any of these questions leave this topic now and please learn the basics of using VB6 and editing your project files.

The quest system is a bit advanced of an Add-in for some one Just starting to learn, try some simpler tutorials, then try again here, it's not going anywhere. ^_^
Link to comment
Share on other sites

  • Replies 703
  • Created
  • Last Reply

Top Posters In This Topic

then you did something wrong, do the tutorial again.

P.S. adding a mod and form to your project isnt just add the source file with the rest, you have to add existing form, and add existing module.

Up top in VB6> Project tab> add form/add module>  add existing > find the things you need to add
Link to comment
Share on other sites

i get an error at the first step:

If NPC(npcNum).Behaviour <> NPC_BEHAVIOUR_FRIENDLY And NPC(npcNum).Behaviour <>
NPC_BEHAVIOUR_SHOPKEEPER And

it sais:
Compile error:

Expected: expression

im not a newb to vb6 but i cant seem to fix it

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

If NPC(npcNum).Behaviour <> NPC_BEHAVIOUR_FRIENDLY And NPC(npcNum).Behaviour <>
NPC_BEHAVIOUR_SHOPKEEPER And

you cant leave an "IF": statement open with an "AND", you need to finish the statment, or erase that last "AND", then include a "then" at the end of the line.

to me it looks like you want to finish the statement

```
If NPC(npcNum).Behaviour <> NPC_BEHAVIOUR_FRIENDLY And NPC(npcNum).Behaviour <> NPC_BEHAVIOUR_SHOPKEEPER And NPC(npcNum).Behaviour <> NPC_BEHAVIOUR_QUEST Then

```
Link to comment
Share on other sites

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...