• 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!

Crash & Bug reports

Status
Not open for further replies.
keys doesn't working...
If i try to open door with good key (door actionID=9001 and ke actionId=9001) I can see in console:
Code:
Lua Script Error: [Action Interface] 
data/actions/scripts/other/doors.lua:onUse

data/actions/scripts/other/doors.lua:35: attempt to compare number with nil
GOD Deamon has logged out.


@DOWN:

Yeah I too... :/
 
Last edited:
I have an error...
in rev 205. when a player loged out
server crash
without any warning.
 
Please post the report.txt.
 
It doesn't make report.txt just appear like server closed
and when you pass the mouse by the blank icon next to system time it dissapear...

(I use Mysql database.)
 
Ok... Lets see...
In rev 208 The problem of save it's fixed, but...
Players can't move....
 
Error

SQL query:

DELIMITER | CREATE TRIGGER `ondelete_accounts` BEFORE DELETE ON `accounts` FOR EACH ROW BEGIN DELETE FROM `bans` WHERE `account` = OLD.`id` ;

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DELIMITER |

CREATE TRIGGER `ondelete_accounts`
BEFORE DELETE
ON `accounts`
FOR ' at line 1


what should I do to make this working properly?
 
login server?

possible problem: people can't login to your server?
they can load character list but when you hit enter world you got an error ?¿


solution:
go to config.lua....
go to last lines
edit where say ip:127.0.0.1 <- put your ip here
 
Blessing doesn't working.

@EDIT:
Sorry, my bad blessing working...
 
Last edited:
About the new anti-walk on chest sys:

The script is kinda messed up :p
Here it is the same, but working:
Code:
function onStepIn(cid, item, position)
	if item.uid > [B]0 and item.uid < 65535[/B] then
		if isPlayer[B](cid)[/B] == TRUE then
			local lookDirection = getPlayerLookDir(cid)
			if lookDirection == NORTH then
				position.y = position.y + 1
			elseif lookDirection == WEST then
				position.x = position.x + 1
			elseif lookDirection == SOUTH then
				position.y = position.y - 1
			else
				position.x = position.x - 1
			end
			doTeleportThing(cid, position, FALSE)
		end
	end
end

cya ;)
 
I just wrote it quick, couldn't test it :(, thanks fixed.
 
login server?

possible problem: people can't login to your server?
they can load character list but when you hit enter world you got an error ?¿


solution:
go to config.lua....
go to last lines
edit where say ip:127.0.0.1 <- put your ip here

Lol so why 100+ players are playing on my serv? THE BUG IS IF 2 OR MORE PLAYERS WILL LOG IN IN THE SAME SECOND THE SERVER WILL CRASH (ITS CRASHING WHEN SOMEONE DOING MAGEBOMB, ETC)
 
"Lol so why does it only happen on your server?"

If you want to proove it's a bug do it on;
radonia.otland.net:7171.
 
"Lol so why does it only happen on your server?"

If you want to proove it's a bug do it on;
radonia.otland.net:7171.

i must tell that but you are so stupid. every otserv got it and you dont modified anything on ConnectionHandler and i dont modified anything in sources so shut up about my mods or lua script cause. quest system doesnt crashing. well if you cant fix it dont say it happens on my server only
 
Last edited:
Status
Not open for further replies.
Back
Top Bottom