Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release] Iris 1.18 Single IP Setup

Newbie Spellweaver
Joined
Jun 3, 2005
Messages
58
Reaction score
0
Very good tutorial congratulations, server running fine, plus I can not router to other players enter the server using the router to open more doors not go, could someone explain to me how it does for other players entering the server.
 
Newbie Spellweaver
Joined
Dec 26, 2008
Messages
98
Reaction score
2
can anyone share the IRIS_1_18_SINGLE_IP.RAR ? the link seems not to work... Anyone with good heart...
 
Newbie Spellweaver
Joined
Sep 9, 2008
Messages
23
Reaction score
5
can anyone share the IRIS_1_18_SINGLE_IP.RAR ? the link seems not to work... Anyone with good heart...

OK noproblem I'm Reupload to
this pack is original pack from first page

Link

 
Newbie Spellweaver
Joined
Dec 26, 2008
Messages
98
Reaction score
2
anyone knows how to set up this in a dynamic ip... Help/Tutorial would be much appreciated..

Ragezone Rocks!
 
CPP/C#/PHP/ASM
Joined
Apr 7, 2009
Messages
452
Reaction score
189
so its impossible to make it without dedicated server ?
i mean i want to do it on my pc and i got a router , if there is any solution until now i would love to hear..
 
In the Emperor name
Loyal Member
Joined
Jun 25, 2011
Messages
1,605
Reaction score
238
so its impossible to make it without dedicated server ?
i mean i want to do it on my pc and i got a router , if there is any solution until now i would love to hear..

i was trying to work on that, but still cant fix a working formula to encode the ip. if you know some VB, i give you the source code and you can play with it all you want.

Code:
Imports System.Net.Sockets
Imports System.Net

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load


Dim server As String = "your dyndns/no-ip/w.e link - like iris.no-ip.com"
Dim hostInfo As IPHostEntry = Dns.GetHostEntry(server) ' Convert http dir to ip
MsgBox(hostInfo.AddressList(0).ToString)
Dim arrDec(), ip, codedip As String
Dim i As Integer
Dim intResult, codedip2 As Long
ip = hostInfo.AddressList(0).ToString
If ip = "" Then
MsgBox("no ip detected... to lazy to do a error handler")
End
Else
arrDec = ip.Split(".")
For i = arrDec.Length - 1 To 0 Step -1
intResult = intResult + ((Int(arrDec(i)) Mod 256) * Math.Pow(256, 3 - i))
Next
codedip = intResult
End If
MsgBox(Val(codedip))
codedip2 = intResult + 14400
Dim process As System.Diagnostics.Process = Nothing
Dim processStartInfo As System.Diagnostics.ProcessStartInfo
processStartInfo = New System.Diagnostics.ProcessStartInfo()
processStartInfo.FileName = "irisclient.exe"
processStartInfo.Arguments = " " + Str(codedip2)
processStartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal
processStartInfo.UseShellExecute = True
Try
process = System.Diagnostics.Process.Start(processStartInfo) ' launch the client + encoded ip
Catch ex As Exception
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
Finally
If Not (process Is Nothing) Then
process.Dispose()
End If
End Try
End Sub

note, this only allow irisclient to reach your router ip (if like i say can find a good formula).
at router, simply reroute anything from port 14400 to your pc ip
 
Last edited:
Newbie Spellweaver
Joined
Nov 2, 2007
Messages
11
Reaction score
5
I compile the server use my source code,but i cannot enter tutorial mode~~
i receive some MEMBER_CHECK error~~~
 
Initiate Mage
Joined
Sep 15, 2008
Messages
4
Reaction score
0
IP Address. . . . . . . . . . . . : 10.25.222.204
Subnet Mask . . . . . . . . . . . : 255.255.254.0
Default Gateway . . . . . . . . . : 10.25.222.4
DNS Servers . . . . . . . . . . . : 10.25.236.178
10.25.237.143
How to config?! :*:
p/s info in VPS Azure.
 
Initiate Mage
Joined
Aug 3, 2013
Messages
2
Reaction score
0
Bump for 1ip wan

OK noproblem I'm Reupload to
this pack is original pack from first page

Link


THX for Re upload :)

Hmm...after I hex edited the apps....I got errors on all saying they were no longer a valid win32 app. 0o

175iris << do not copy & paste

Do >> type > one by one word
 
Initiate Mage
Joined
Aug 3, 2013
Messages
2
Reaction score
0
Doesn't Work

ISP > Router 192.168.1.1 > computer 192.168.1.11 (192.168.5.1-192.168.5.10)

Database > 175iris, 175web
 
Experienced Elementalist
Joined
Nov 30, 2009
Messages
251
Reaction score
45
Doesn't Work

ISP > Router 192.168.1.1 > computer 192.168.1.11 (192.168.5.1-192.168.5.10)

Database > 175iris, 175web

I don't believe these files are not able to run localhost. That is one of the major problem with these compiled files.
 
Back
Top