Update Adding a new NPC authored by Noah MacMinn's avatar Noah MacMinn
### As of Spring 2022:
1. In PlayersForTest.java create the NPC with the following outline
1. In PlayersForTest.java create the NPC with the following outline <br>
`NPCNAME(id, playerName, type, row, col, password, mapName, pin, changedOn, doubloons, experiencePoints, crew, major, section, buffPool, online, places previously visited)`
2. In NPCForTest.java add the NPC <br>
`NPCNAME(PlayersForTest.NPCNAME.getPlayerID(), "behavior")`
3. Ensure the behavior exists or create the new behavior
### OLD:
There is a table in the database that keeps a list of all of the NPCs. Creating a new NPC requires filling that table. When a server starts, it will query that table for what NPCs it should have and starts them up.
......
......