24 lines
622 B
Markdown
24 lines
622 B
Markdown
### Function: GetHeading(spawn)
|
|
|
|
**Description:**
|
|
Get the heading of the specified Spawn.
|
|
|
|
**Parameters:**
|
|
- `spawn` (Spawn) - Spawn object representing `spawn`.
|
|
**Returns:** None.
|
|
|
|
**Example:**
|
|
|
|
```lua
|
|
-- From ItemScripts/BowlOfTerratrodderChuck.lua
|
|
function used(Item, Player)
|
|
if HasQuest(Player, AMindOfMyOwn) then
|
|
if GetZoneID(GetZone(Player)) == 108 then
|
|
|
|
RemoveItem(Player, TerratrodderChuck)
|
|
local bucket = SpawnMob(GetZone(Player), 1081002, 1, GetX(Player), GetY(Player), GetZ(Player), GetHeading(Player))
|
|
AddSpawnAccess(bucket, Player)
|
|
SetTempVariable(bucket, "PlayerPointer", Player)
|
|
end
|
|
```
|