Try this for the !party talk action.
Party.lua
local config =
{
sexChangeable = true,
copyOutfitAndAddonsEverytime = true
}
function onSay(cid, words, param, channel)
party = getPlayerParty(cid)
if (config.sexChangeable == true) then
sex = getPlayerSex(cid)
end
if (party) then
if...