Hey =)
I have made 3 lua scripts.. The problem is that i can't get them to work 
Here they are:
1: Fixed =D
2: Fixed =D
3: This Script should spawn a teleporter NPC named "Chia".
Code:
local itemid = 100001
function Item_Trigger(item, event, player)
Item_menu(item, player)
end
function Item_menu(item, player)
if (player:IsInCombat() == true) then
player:SendAreaTriggerMessage("You can not spawn a Chia while in combat!")
else
item:GossipCreateMenu(5555, player, 0)
item:GossipMenuAddItem(8, "Please spawn a Chia for me", 600, 0)
item:GossipSendMenu(player)
end
end
function OnSelect(item, event, player, id, intid, code, misc)
if (intid == 110) then
local x =player:GetX ()
local y =player:GetY ()
local z =player:GetZ ()
local o =player:GetO ()
player:SpawnCreature (35001, x, y, z, o, 35, 70000)
player:GossipComplete()
end
end
RegisterItemGossipEvent(100001,1,"Item_Trigger")
RegisterItemGossipEvent(100001,2,"OnSelect")
I have tried fixing them self, but with no luck 
+Rep+Rep+Rep for help <3<3