| 212 | } |
| 213 | |
| 214 | bool Sapphire::Scripting::ScriptMgr::onOutsideRange( Entity::Player& player, uint32_t eventId, uint32_t param1, |
| 215 | float x, float y, float z ) |
| 216 | { |
| 217 | auto script = m_nativeScriptMgr->getScript< Sapphire::ScriptAPI::EventScript >( eventId ); |
| 218 | if( !script ) |
| 219 | return false; |
| 220 | script->onOutsideRange( player, eventId, param1, x, y, z ); |
| 221 | return true; |
| 222 | } |
| 223 | |
| 224 | bool Sapphire::Scripting::ScriptMgr::onEmote( Entity::Player& player, uint64_t actorId, |
| 225 | uint32_t eventId, uint8_t emoteId ) |
no outgoing calls
no test coverage detected