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

[Help] Commands TFS 0.3.2 !

Swimmi

♥Inactive♥
Joined
Jan 15, 2008
Messages
791
Reaction score
2
Location
Germany
Who can help me many command on my tfs 0.3.2 server dosent work,
i mean: /goto player, /a, /c player and much more -.-°

i get the info in my gui console: /c player coming the same by the other commands.

Code:
[11/04/2009 18:58:15] Lua Script Error: [TalkAction Interface] 
[11/04/2009 18:58:15] data/talkactions/scripts/teleporthere.lua:onSay

[11/04/2009 18:58:15] data/talkactions/scripts/teleporthere.lua:16: attempt to call global 'isPlayerGhost' (a nil value)
[11/04/2009 18:58:15] stack traceback:
[11/04/2009 18:58:15] 	data/talkactions/scripts/teleporthere.lua:16: in function <data/talkactions/scripts/teleporthere.lua:1>
bla..bla..bla :(

rep ++
 
Are you sure you're using TFS 0.3.2 and not some older version (0.2?)
Because, isPlayerGhost in not a nil value in 0.3.2 (it has that function)

You might be using TFS 0.2 with 0.3's talkactions (formerly known as commands)
 
Are you sure you're using TFS 0.3.2 and not some older version (0.2?)
Because, isPlayerGhost in not a nil value in 0.3.2 (it has that function)

You might be using TFS 0.2 with 0.3's talkactions (formerly known as commands)


nope im using orginal tfs 0.3.2 all standart actions, talkaction script im use only my map now...

Code:
[11/04/2009 19:12:58] The Forgotten Server, version 0.3.2 (Crying Damson)
[11/04/2009 19:12:58] A server developed by Elf, Talaturen, Lithium, Kiper, Kornholijo, Jonern & Nightmare.
[11/04/2009 19:12:58] Visit our forum for updates, support and resources: http://otland.net.
 
Well, you don't have the code below in your data/lib/function.lua, so maybe that's why it isn't working? ::
PHP:
function isPlayerGhost(cid)
	return isPlayer(cid) == TRUE and getCreatureCondition(cid, CONDITION_GAMEMASTER, GAMEMASTER_INVISIBLE) or FALSE
end

Anyways, you can update your folder data/lib with all the latest files for version 0.3.2 here:
[forgottenserver] Index of /tags/0.3.2/data/lib
 
Well, you don't have the code below in your data/lib/function.lua, so maybe that's why it isn't working? ::
PHP:
function isPlayerGhost(cid)
	return isPlayer(cid) == TRUE and getCreatureCondition(cid, CONDITION_GAMEMASTER, GAMEMASTER_INVISIBLE) or FALSE
end

Anyways, you can update your folder data/lib with all the latest files for version 0.3.2 here:
[forgottenserver] Index of /tags/0.3.2/data/lib

OMFG THANKS MAN IT WORK NOW !!!!!!!!!!!!! Big REP! :* :*



other fail when i start the serv coming:

Code:
[11/04/2009 21:12:41] Lua Script Error: [TalkAction Interface] 
[11/04/2009 21:12:41] data/talkactions/scripts/gamemaster.lua

:/
 
Back
Top