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

CrazySmoug

Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Everything posted by CrazySmoug

  1. By Check if Guild Name Exist you made a mistake: [Post Link](http://www.eclipseorigins.com/community/index.php?/topic/124848-eo-2030-guilds/page-16#entry904482) > –-------------------------------------------- > > > > Put this at the bottom of modguild: > > ``` > Function GuildNameExist(ByVal Name As String) As Boolean > > Dim filename As String > > filename = "data\guildnames\" & Trim(Name) & ".bin" > > If FileExist(filename) Then > > GuildNameExist = True > > End If > > End Function > > ``` > –-------------------------------------------- ``` filename = "data\guildnames\" & Trim(Name) & ".bin" ``` change to this: ``` filename = "data\guildnames\" & Trim(Name) & ".dat" ``` the ending ".bin" is wrong it must be ".dat" I needet 3 hours to figure out why it still not work after i did all the things in your guide on the end i found it (=.=) for today i cant look at the vb6 code anymore or my brain explode xD (Sry for my bad english im german :P )
×
×
  • Create New...