private void findMerchant(){
bool found = false;
int counter = 0;
List<Creature> creatures = getCreatures();
while(!found && counter < creatures.Count){
if(creatures[counter].db.npcNicknameId == 12){
found = true;
}else{
counter++;
}
}
if(found){
MoveTo(creatures[counter);
Log("[INFO] General Merchant found.");
}else{
Log("[ERROR] General Merchant not found.");
}
}