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

Windows [TFS] Some problems

Teddy

SweStream.se
Joined
Oct 2, 2008
Messages
3,797
Reaction score
10
Location
Sweden 172
6o0nz51.gif
Problem 1 FIXED !! GO DOWN FOR PROBLEM 2 AND HELP ME PLZZ
How To Fix : Change getItemName to getItemNameById in quest script
My Quest's/all quest box Dont Work ..
13:56 You have found a chest.
But i get my item like fire sword , beholder shield and that , i also get a error in console every time i loot in a quest chest
Code:
[25/02/2009 13:56:52] Lua Script Error: [Action Interface] 
[25/02/2009 13:56:52] data/actions/scripts/quests/quests.lua:onUse
[IMG]http://i555.photobucket.com/albums/jj479/POKEALEXIS/6o0nz51.gif[/IMG]
[25/02/2009 13:56:52] luaGetItemWeight(). Item not found
Here is mine action add for quests.lua
<action itemid="1740" script="quests/quests.lua"/>
<action fromid="1747" toid="1749" script="quests/quests.lua"/>
and here is the quests.lua file
Code:
local annihilatorReward = {1990, 2400, 2431, 2494}
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if item.uid > 1000 and item.uid < 10000 then
		local itemWeight = getItemWeight(item.uid, 1, FALSE)
		local playerCap = getPlayerFreeCap(cid)
		if isInArray(annihilatorReward, item.uid) == TRUE then
			if getPlayerStorageValue(cid, 30015) == -1 then
				if playerCap >= itemWeight then
					if item.uid == 1990 then
						local container = doPlayerAddItem(cid, 1990, 1)
						doAddContainerItem(container, 2326, 1)
					else
						doPlayerAddItem(cid, item.uid, 1)
					end
					doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, 'You have found a ' .. getItemName(item.uid) .. '.')
					setPlayerStorageValue(cid, 30015, 1)
				else
					doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, 'You have found a ' .. getItemName(item.uid) .. ' weighing ' .. itemWeight .. ' oz it\'s too heavy.')
				end
			else
				doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "It is empty.")
			end
		elseif getPlayerStorageValue(cid, item.uid) == -1 then
			if playerCap >= itemWeight then
				doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, 'You have found a ' .. getItemName(item.uid) .. '.')
				doPlayerAddItem(cid, item.uid, 1)
				setPlayerStorageValue(cid, item.uid, 1)
			else
				doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, 'You have found a ' .. getItemName(item.uid) .. ' weighing ' .. itemWeight .. ' oz it\'s too heavy.')
			end
		else
			doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "It is empty.")
		end
	else
		return FALSE
	end
	return TRUE
end
6o0nz51.gif

IMAGE
[http://img90.imageshack.us/img90/3530/stormotland.jpg]

Same Problem Whit all my quest box...
stormotland.jpg

6o0nz51.gif

Problem 2
my second problem is that I can make an acc in Geiser ACC but I can not log into it?
then when I connect to localhost / phpmyadmin, I noticed that my acc as I did at Geiser has not come to my database accounts .. (can not log in with the acc on geisor / homesite or in-game)

______________________________________
translated by google BETA
translate_beta_res.gif
 
Last edited:
Problem 1 fixed

Problem 2
my second problem is that I can make an acc in Geiser ACC but I can not log into it?
then when I connect to localhost / phpmyadmin, I noticed that my acc as I did at Geiser has not come to my database accounts .. (can not log in with the acc on geisor / homesite or in-game)
 
Back
Top