okok, grazie del vostro aiuto, ma ora avrei un altro problema per una cosa totalmente diversa, quindi invece di fare un altro topic la chiedo qui.
Ho questo script che fra poco copierò qui che serve a teletrasportarsi in alcune parti della mappa scrivendo per esempio /tele beach .
Ora vorrei fare che appena si ci teletrasporta hai la skin 285 e che si entra nel gruppo "Zombies_Arena"
Mi potete aiutare???
Ho provato a farlo da solo ma nn ci riesco, ecco il codice:
tele = { }
tele['zombies'] = { 213, 1865, 13.15 }
tele['ZOMBIES'] = { 213, 1865, 13.15 }
tele['zombie'] = { 213, 1865, 13.15 }
tele['ZOMBIE'] = { 213, 1865, 13.15 }
tele['zombi'] = { 213, 1865, 13.15 }
tele['ZOMBI'] = { 213, 1865, 13.15 }
tele['zomb'] = { 213, 1865, 13.15 }
tele['ZOMB'] = { 213, 1865, 13.15 }
function teleportMe(player, command, arg1)
if (arg1) then
if (tele[arg1]) then
local veh = getPedOccupiedVehicle(player)
if (veh) then
setElementPosition(veh, tele[arg1][1], tele[arg1][2], tele[arg1][3]+2)
else
setElementPosition(player, tele[arg1][1], tele[arg1][2], tele[arg1][3]+2)
end
outputChatBox("* COMPUTER: You have been teleported to: #ff00ff"..arg1, player, 255, 255, 0, true)
else
outputChatBox("* COMPUTER: This location is not set!", player, 255, 0, 0)
end
else
outputChatBox("* COMPUTER: Wrong parameter count. Usage: /tele location_name", player, 255, 0, 0)
end
end
addCommandHandler("tele", teleportMe)