mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-25 14:07:46 +00:00
Fix LogMessage stuff
This commit is contained in:
parent
0cabc03c21
commit
4f954ba328
2 changed files with 5 additions and 5 deletions
|
@ -222,7 +222,7 @@ private:
|
|||
void Scene00004Return( World::Quest& quest, Entity::Player& player, const Event::SceneResult& result )
|
||||
{
|
||||
eventMgr().sendEventNotice( player, getId(), 0, 0 );
|
||||
//TODO: Show the "Your communion has furthered your potentional as a white mage." message. Is it that logmessage0 var?
|
||||
playerMgr().sendLogMessage( player, Logmessage0 );
|
||||
quest.setSeq( SeqFinish );
|
||||
}
|
||||
|
||||
|
|
|
@ -215,7 +215,7 @@ private:
|
|||
void Scene00003Return( World::Quest& quest, Entity::Player& player, const Event::SceneResult& result )
|
||||
{
|
||||
eventMgr().sendEventNotice( player, getId(), 0, 0 );//TODO:Item Icon, Cleric's Gloves
|
||||
//TODO: Show "Your Garb is not blessed with the power of A-Towa-Cant." message (Logmessage0?)
|
||||
playerMgr().sendLogMessage( player, Logmessage0 );
|
||||
quest.setUI8AL( 1 );
|
||||
quest.setUI8CH( 0 );
|
||||
checkQuestCompletion( quest, player );
|
||||
|
@ -242,7 +242,7 @@ private:
|
|||
void Scene00005Return( World::Quest& quest, Entity::Player& player, const Event::SceneResult& result )
|
||||
{
|
||||
eventMgr().sendEventNotice( player, getId(), 1, 0 );//TODO:Item Icon, Cleric's Culottes
|
||||
//TODO: Show "Your Garb is not blessed with the power of A-Towa-Cant." message (Logmessage0?)
|
||||
playerMgr().sendLogMessage( player, Logmessage0 );
|
||||
quest.setUI8BH( 1 );
|
||||
quest.setUI8CL( 0 );
|
||||
checkQuestCompletion( quest, player );
|
||||
|
@ -269,7 +269,7 @@ private:
|
|||
void Scene00007Return( World::Quest& quest, Entity::Player& player, const Event::SceneResult& result )
|
||||
{
|
||||
eventMgr().sendEventNotice( player, getId(), 2, 0 );//TODO:Item Icon, Cleric's Boots
|
||||
//TODO: Show "Your Garb is not blessed with the power of A-Towa-Cant." message (Logmessage0?)
|
||||
playerMgr().sendLogMessage( player, Logmessage0 );
|
||||
quest.setUI8BL( 1 );
|
||||
quest.setUI8DH( 0 );
|
||||
checkQuestCompletion( quest, player );
|
||||
|
@ -437,7 +437,7 @@ private:
|
|||
void Scene00021Return( World::Quest& quest, Entity::Player& player, const Event::SceneResult& result )
|
||||
{
|
||||
eventMgr().sendEventNotice( player, getId(), 6, 0 );//TODO:Item Icon, Cleric's Circlet
|
||||
//TODO: Show "Your Garb is not blessed with the power of A-Towa-Cant." message (Logmessage0?)
|
||||
playerMgr().sendLogMessage( player, Logmessage0 );
|
||||
quest.setSeq( SeqFinish );
|
||||
quest.setUI8BH( 0 );
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue