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

[Request] 2 Talkactions.

sertantoto

New Member
Joined
Nov 30, 2007
Messages
3
Reaction score
0
aaajj.jpg

1. Request ; I want a talkaction code, which i can write that text box something which i want(i will add gods and tutors list and commands list which players can use them(there is special talkactions so i must fill them by myself),..
2. Request ; when player say !train they will teleport to training place(i will fill xyz poss.) (but important think is on that talkactions, players cant teleport when they have pz..
Please help thanks.
 
1. Request ; I want a talkaction code, which i can write that text box something which i want(i will add gods and tutors list and commands list which players can use them(there is special talkactions so i must fill them by myself),..
2. Request ; when player say !train they will teleport to training place(i will fill xyz poss.) (but important think is on that talkactions, players cant teleport when they have pz..
Please help thanks.

For which server distro?
 
Teleport

Code:
function onSay(cid, words, param, channel)
	local pos = { x = 100, y = 100, z = 7 }
	if(words == "!train") then
		if(isPlayerPzLocked(cid) == false) then
			doTeleportThing(cid, pos)
		else
			doPlayerSendCancel(cid, "You are in a battle.")
		end
		return true
	end
end
 
Last edited:
Back
Top