1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-06-02 06:17:45 +00:00

redo + a little style (coff coff :D)

This commit is contained in:
Dantestyle 2018-07-17 21:22:19 +02:00
parent efa974430c
commit c8ad76699d
4 changed files with 8 additions and 8 deletions

View file

@ -73,9 +73,9 @@ class ClsArc000 : public EventScript
if( npcId != Enemy0 || npcId != Enemy1 || npcId != Enemy2 )
return;
auto currentKC37 = player.getQuestUI8AL( getId() );
auto currentKC49 = player.getQuestUI8BH( getId() );
auto currentKC47 = player.getQuestUI8BL( getId() );
auto currentKC37 = player.getQuestUI8AL( getId() ) + 1;
auto currentKC49 = player.getQuestUI8BH( getId() ) + 1;
auto currentKC47 = player.getQuestUI8BL( getId() ) + 1;
if( currentKC37 >= 6 )
{

View file

@ -150,8 +150,8 @@ class ClsArc001 : public EventScript
if( npcId != Enemy0 || npcId != Enemy1 )
return;
auto currentKC5 = player.getQuestUI8AL( getId() );
auto currentKC32 = player.getQuestUI8BH( getId() );
auto currentKC5 = player.getQuestUI8AL( getId() ) + 1;
auto currentKC32 = player.getQuestUI8BH( getId() ) + 1;
if( currentKC5 >= 8 )
{

View file

@ -164,8 +164,8 @@ class ClsArc002 : public EventScript
if( npcId != Enemy0 || npcId != Enemy1 )
return;
auto currentKC39 = player.getQuestUI8AL( getId() );
auto currentKC12 = player.getQuestUI8BH( getId() );
auto currentKC39 = player.getQuestUI8AL( getId() ) + 1;
auto currentKC12 = player.getQuestUI8BH( getId() ) + 1;
if( currentKC39 >= 8 )
{

View file

@ -66,7 +66,7 @@ public:
if( npcId != ENEMY0 )
return;
auto currentKC = player.getQuestUI8AL( getId()) + 1;
auto currentKC = player.getQuestUI8AL( getId() ) + 1;
if( currentKC >= 6 )
player.updateQuest( getId(), SEQ_FINISH );