• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Allow conections from same ip adress

juande750

New Member
Joined
Aug 13, 2013
Messages
3
Reaction score
0
Hi

I am having a problem with my ot 8.6 just 1 computer of an internet conection can log in if some one else try it the server deny the conection ¿could some one tell me how to enable that
 
Theres not antimc in creaturescript.mx

look:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<creaturescripts>
        <event type="outfit" name="Addons" event="script" value="outfits.lua"/>
        <event type="login" name="AddonsLogin" event="script" value="outfits.lua"/>
	<event type="login" name="PlayerLogin" event="script" value="login.lua"/>

	<event type="joinchannel" name="GuildMotd" event="script" value="guildmotd.lua"/>
	<event type="receivemail" name="Mail" event="script" value="mail.lua"/>
	<event type="reportbug" name="SaveReportBug" script="reportbug.lua"/>
	<event type="advance" name="AdvanceSave" event="script" value="advancesave.lua"/>

<event type="login" name="Antimagebomb" event="script" value="Antimagebomb.lua"/>
	<event type="think" name="Idle" event="script" value="idle.lua"/>
	<event type="think" name="SkullCheck" event="script" value="skullcheck.lua"/>
	<event type="advance" name="SpellUp" event="script" value="spellup.lua"/>
	<event type="combat" name="partyAndGuildProtection" event="script" value="partyAndGuildProtection.lua"/>
</creaturescripts>
 
Last edited:
Hi

I am having a problem with my ot 8.6 just 1 computer of an internet conection can log in if some one else try it the server deny the conection ¿could some one tell me how to enable that


Are the people trying to connect to your server locally, or from outside your house - externally?

If externally, check config.lua for possible multi-client / mc type things.

If internally (lan network) - make sure your using the router's ip address assigned to your computer. usually it's set as 192.168.0.11 or 192.168.2.11 ( can easily check inside your router )
To connect to my friends server in my lan network I have to manually modify my hosts file.. (windows 7) C:\WINDOWS\System32\drivers\etc

to look like this..

Code:
# localhost name resolution is handled within DNS itself.
#	127.0.0.1       localhost
#	::1             localhost

192.168.2.13 www.tibiakingdoms.com

192.168.2.13 is his internal ip - and the tibiakingdoms is how to connect to the server.

Just a thought~


also you can add code tags around your text to make it look cleaner.

Code:
[*code]Text you want to show - just delete *'s[/*code]
 
Last edited by a moderator:
thanks
the config.lua doesn't said anything about mc just "allowclones" and it has the true value

- - - Updated - - -

something else i cand do?

- - - Updated - - -

then maybe you have "anti mc" in creaturescripts just remove it's line from creaturescripts.xml
Thanks megabomb was the antimc script
 

Similar threads

Back
Top