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

Talkaction.xml don't work !

Pimpasss

New Member
Joined
Jan 9, 2020
Messages
37
Reaction score
2
Hello guys ! .
I have problem with Talkaction.xml from Evo Mega Edit by Aciek 8.1 XML .
I try to make some commands like a :
!aol
!bless
!raiddemon

And everything what i try add to server (i mean with talkaction.xml) Dont work ! please help me guys

My Talkaction.xml :

<?xml version="1.0"?>

<talkactions>

<talkaction words="open sesame" script="example.lua" />

</talkactions>
 
Can you show your .lua script?

from talkaaction i have just example.lua :


function onSay(cid, words, param)

playerpos = getPlayerPosition(cid)

if math.max(math.abs(playerpos.x-23), math.abs(playerpos.y-30)) < 3 then
doTransformItem(1000, 1211)
doSendAnimatedText(playerpos, "OPEN!", 120)
return 0
end
return 1

end
 
Code:
<talkaction words="open sesame" script="scripts/example.lua" />

I have this one :
<talkaction words="open sesame" script="example.lua" />



i try now make a cenzure system mode and i have thios error in console :

Lua Script Error: [TalkAction Interface]
data/talkactions/scripts/CenzuraSystem.lua:eek:nSay

attempt to index a nil value

Lua Script Error: [TalkAction Interface]
data/talkactions/scripts/CenzuraSystem.lua:eek:nSay

attempt to index a nil value
 
Last edited:
Back
Top