[COLOR=rgb(51,51,51)]" Bloodduel.cpp
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(87): error C2039: ‘GetPlayer’ : is not a member of ‘Player’
[COLOR=rgb(51,51,51)]2> C:Program Files (x86)TrinityCoresrcservergameEntitiesPlayer Player.h(1244) : see declaration of ‘Player’
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(87): error C3861: ‘GetPlayer’: identifier not found
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(125): error C2039: ‘GetPlayer’ : is not a member of ‘Player’
[COLOR=rgb(51,51,51)]2> C:Program Files (x86)TrinityCoresrcservergameEntitiesPlayer Player.h(1244) : see declaration of ‘Player’
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(125): error C3861: ‘GetPlayer’: identifier not found
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(130): error C2039: ‘MonsterWhisper’ : is not a member of ‘Creature’
[COLOR=rgb(51,51,51)]2> C:Program Files (x86)TrinityCoresrcservergameEntitiesCreatur eCreature.h(432) : see declaration of ‘Creature’
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(135): error C2039: ‘GetPlayer’ : is not a member of ‘Player’
[COLOR=rgb(51,51,51)]2> C:Program Files (x86)TrinityCoresrcservergameEntitiesPlayer Player.h(1244) : see declaration of ‘Player’
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(135): error C3861: ‘GetPlayer’: identifier not found
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(139): error C2039: ‘MonsterWhisper’ : is not a member of ‘Creature’
[COLOR=rgb(51,51,51)]2> C:Program Files (x86)TrinityCoresrcservergameEntitiesCreatur eCreature.h(432) : see declaration of ‘Creature’
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(181): warning C4390: ‘;’ : empty controlled statement found; is this the intent?
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(187): error C2039: ‘GetPlayer’ : is not a member of ‘Player’
[COLOR=rgb(51,51,51)]2> C:Program Files (x86)TrinityCoresrcservergameEntitiesPlayer Player.h(1244) : see declaration of ‘Player’
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(187): error C3861: ‘GetPlayer’: identifier not found
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(190): warning C4390: ‘;’ : empty controlled statement found; is this the intent?
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(216): error C2065: ‘itr’ : undeclared identifier
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(216): error C2227: left of ‘->guid’ must point to class/struct/union/generic type
[COLOR=rgb(51,51,51)]2> type is ‘unknown-type’
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(224): error C2144: syntax error : ‘char’ should be preceded by ‘;’
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(226): error C2146: syntax error : missing ‘;’ before identifier ‘creature’
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(226): error C2039: ‘MonsterWhisper’ : is not a member of ‘Creature’
[COLOR=rgb(51,51,51)]2> C:Program Files (x86)TrinityCoresrcservergameEntitiesCreatur eCreature.h(432) : see declaration of ‘Creature’
[COLOR=rgb(51,51,51)]2>C:Program Files (x86)TrinityCoresrcserverscriptsCustomBloodd uel.cpp(267): error C2039: ‘MonsterWhisper’ : is not a member of ‘Creature’
[COLOR=rgb(51,51,51)]2> C:Program Files (x86)TrinityCoresrcservergameEntitiesCreatur eCreature.h(432) : see declaration of ‘Creature’
[COLOR=rgb(51,51,51)]========== Build: 1 succeeded, 1 failed, 1 up-to-date, 0 skipped =========="
[COLOR=rgb(51,51,51)]"
[COLOR=rgb(51,51,51)]if (Player* plr = Player::GetPlayer(*player, itr->guid))
[COLOR=rgb(51,51,51)]{
[COLOR=rgb(51,51,51)]if (USE_TOKEN)
[COLOR=rgb(51,51,51)]{
[COLOR=rgb(51,51,51)]sprintf(msg, “Accept %s’s Challenge of %u tokens”, plr->GetName(), itr->amount);
[COLOR=rgb(51,51,51)]player->ADD_GOSSIP_ITEM(GOSSIP_ICON_INTERACT_1, msg, GOSSIP_SENDER_MAIN, itr->guid);
[COLOR=rgb(51,51,51)]sprintf(msg, “Decline %s’s Challenge of %u tokens”, plr->GetName(), itr->amount);
[COLOR=rgb(51,51,51)]player->ADD_GOSSIP_ITEM(GOSSIP_ICON_INTERACT_1, msg, GOSSIP_SENDER_INFO, itr->guid);
[COLOR=rgb(51,51,51)]}
[COLOR=rgb(51,51,51)]else
[COLOR=rgb(51,51,51)]{
[COLOR=rgb(51,51,51)]sprintf(msg, “Accept %s’s Challenge of %ug”, plr->GetName(), itr->amount/10000);
[COLOR=rgb(51,51,51)]player->ADD_GOSSIP_ITEM(GOSSIP_ICON_INTERACT_1, msg, GOSSIP_SENDER_MAIN, itr->guid);
[COLOR=rgb(51,51,51)]sprintf(msg, “Decline %s’s Challenge of %ug”, plr->GetName(), itr->amount/10000);
[COLOR=rgb(51,51,51)]player->ADD_GOSSIP_ITEM(GOSSIP_ICON_INTERACT_1, msg, GOSSIP_SENDER_INFO, itr->guid);"