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

Guild/VB6/NPC


bashondegek
 Share

Recommended Posts

Hey Guys,

im new at EE, i got a game thats gonna take a funny look :P.

But now, my 3 questions:
1\. Is there a way people can make a guild at an NPC?
so yea? Which way is it?

2\. I downloaded VB6, installed it. But can't open the client with it.
Someone told me, download VB6 and change the acces for the F4 button to 0 So people can make they're own guilds (good idea :D) but how to open the client file in VB6?

3\. Is there a way to let NPC's talk? is there a script that make them talk when you push the enter button or hit the attack button? Is there another way to make them talk?

Thanks,

Bash
Link to comment
Share on other sites

mkay.. i got it, now my question = where to find the F-button acces? is it Server based? or Client based?, cause i got a good server :/ but not in source format. so.. i'll lose everything right? or can i copy - paste all folders inside my old to my new server folder?
Link to comment
Share on other sites

  • 4 weeks later...
In frmmirage on the server side

find the sub 'Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)'

If KeyCode = vbKeyF4 Then
        If Player(MyIndex).Access > 2 Then
            frmGuild.Show vbModeless, frmMirage
        End If
    End If

and change VbKeyF4

to iether of the following(depending which you want to use)

48 or 96

48 is the number 0 above the 'O' and 'P' key

96 is the numberpad 0 key.

then in the server find

Public Sub Packet_GuildMake(ByVal Index As Long, ByVal Name As String, ByVal Guild As String)

and delete the following code from teh sub

> If GetPlayerAccess(Index) < ADMIN_DEVELOPER Then
>         Call HackingAttempt(Index, "Admin Cloning")
>         Exit Sub
>     End If

now players should be able to create guilds.
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...