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

Wartio

Any game ideas?
Joined
Apr 2, 2010
Messages
457
Reaction score
29
Location
Sweden
Do anyone know what the problem is with account for sample chars?

I created new database, i got every thing working but when i create admin password it says its done then when i open the website "localhost" and when i try to change password or login on Account Manager - Druid sample etc.... then it says its wrong pass.. i tried all ways but still wont work, im using TFS 2.1.4 and Gesior aac 0.3.8, would be great if anyone could help me cuz i want to add lvl / items to the sample chars so new players start with items, cuz atm they start lvl 1 and no items and i have Real Map (start pos is in Thais)

I hope my english is understand able ;)
 
Last edited:
When i go to the website and try to login with my "Admin Account" it says its wrong password, i tried same password all time and im 100% sure im writing correct password, but it says its wrong pass, also i cant enter admin account, i tried to reinstall , but its still the same, idk why it wont work cuz im writing all info correct but wrong ;SS
 
Or go to mods and add to firstitems.xml:

PHP:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="First Items" version="1.0" author="The Forgotten Server" contact="otland.net" enabled="yes">
	<config name="firstitems_config"><![CDATA[
		config = {
			storage = 30001,
			items = {2050, 2382}
		}
	]]></config>
	<event type="login" name="FirstItems" event="script"> <![CDATA[
		domodlib('firstitems_config')
 
		function onLogin(cid)
	local config = {
		voc_items = {
			{ -- SORC
				{2190}, -- wand of vortex
				{2525}, -- dwarven shield
				{2457}, -- steel helmet
				{2463} -- plate robe
			},
			{ -- DRUID
				{2182}, -- snakebite rod
				{2525}, -- dwarven shield
				{2457}, -- steel helmet
				{2463} -- plate robe
			},
			{ -- PALADIN
				{2389}, -- throwing knife
				{2525}, -- dwarven shield
				{2457}, -- steel helmet
				{2463} -- plate armor
			},
			{ -- KNIGHT
				{2383}, -- spike sword
				{2525}, -- dwarven shield
				{2457}, -- steel helmet
				{2463} -- plate armor
			}
		},
		all_items = {
			{2647}, -- plate legs
			{2643} -- leather boots
		},
		extra_items = {
			{2789, 15},
			{2160, 1},
			{2120},
			{5710},
			{8704}, -- small hp
			{7618}, -- hp
			{7588}, -- stron hp
			{7591}, -- great hp
			{8473}, -- ultimate hp
			{7620}, -- mp
			{7589}, -- smp
			{7590}, -- gmp
			{8472} -- sp
		},
		knight_weapons = {
			{2394}, -- morning star
			{2428} -- orcish axe
		}
	}
	if getPlayerGroupId(cid) < 3 then
		if getPlayerStorageValue(cid, storage) == -1 then
			local common = config.voc_items[getPlayerVocation(cid)]
			if common ~= nil then
				for _, v in ipairs(common) do
					doPlayerAddItem(cid, v[1], v[2] or 1)
				end
			end
 
			local all = config.all_items
			if all ~= nil then
				for _, v in ipairs(all) do
					doPlayerAddItem(cid, v[1], v[2] or 1)
				end
			end
 
			local extra = config.extra_items
			local bp = doPlayerAddItem(cid, 1988, 1)
			if extra ~= nil then
				for _, v in ipairs(extra) do
					doAddContainerItem(bp, v[1], v[2] or 1)
				end
			end
 
			local weapons = config.knight_weapons
			if weapons ~= nil then
				for _, w in ipairs(weapons) do
					if isKnight(cid) then
						doAddContainerItem(bp, w[1], w[2] or 1)
					end
				end
			end
 
			setPlayerStorageValue(cid, storage, 1)
		end
	end
	return true
end
	]]></event>
</mod>
 
Use firstitems.lua instead. With it you can change it.
Agreed.

When i go to the website and try to login with my "Admin Account" it says its wrong password, i tried same password all time and im 100% sure im writing correct password, but it says its wrong pass, also i cant enter admin account, i tried to reinstall , but its still the same, idk why it wont work cuz im writing all info correct but wrong ;SS

Where are you trying to login ? Gesior AAC ?
 
Already have that mod but not working

- - - Updated - - -

Im trying to login with the Admin Account in gesior aac and ingame but none works
 
Nvm ;), Thanks alot guys! fixed it ;P

- - - Updated - - -

Thanks for answering me so fast and for helping me!

- - - Updated - - -

But 1 more thing, wonder if i could change "start lvl" ?

- - - Updated - - -

Fixed It, Thread CLOSED!
 
Back
Top