Morrison
Intermediate OT User
I need script of tile only for males and other for females
Code:
function onStepIn(cid)
if item.actionid == 123456 and if getPlayerSex(cid) == 0 then
Warning mensage
MESSAGE_STATUS_CONSOLE_BLUE,"you dont are male to pass")
if item.actionid == 654321 and if getPlayerSex(cid) == 1 then
Warning mensage
MESSAGE_STATUS_CONSOLE_BLUE,"you dont are female to pass")
end
return true
end