Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Need Some Help
#1
I found this TuT for a Guild System:

http://web.miragesource.com/old-tutorial...ystem.html

After reading it over i saw there are things like FRMGuildCP and such, just wondering if anyone knows how to complete this tut.
Reply
#2
Just create a new form, name it that and add all the stuff the tutorial uses.
Reply
#3
So just read the tut and put all the commands into a form? Cuz I have no idea how the Guild Creation works.
Reply
#4
If it uses txtBlablabla, add a textbox named txtBlablabla and the same goes for the other things it used.
Reply
#5
I looked at the Server Guild Creation packet:

Code:
' :::::::::::::::::::::::::
    ' :: Create Guild packet ::
    ' :::::::::::::::::::::::::
    If LCase(Parse(0)) = "createguild" Then
    Dim Z As String
    
      ' Prevent hacking
        If GetPlayerAccess(Index) < ADMIN_CREATOR Then
              Call HackingAttempt(Index, "Trying to use powers not available")
              Exit Sub
        End If
        
        ' The Player
        N = FindPlayer(Parse(1))
        ' The Guild
        Z = Trim(Parse(2))
        
        Call CreateGuild(N, Z)
        Call SetPlayerGuildAccess(N, 4)
        Call SendPlayerData(N)
        Call GlobalMsg(GetPlayerName(N) & " has joined the ranks of " & Z & ".", Black)
        Call AddLog(GetPlayerName(N) & " has joined the ranks of " & Z & ".", ADMIN_LOG)
        Exit Sub
    End If

couldn't find anything there, the is no Guild Creation Command client Side either.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)