diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-26 15:25:03 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-26 15:25:03 -0400 |
commit | 88c21e763178856aef0155595d49085919205951 (patch) | |
tree | e3bcd6caa28bf0014eeccd3a3c8582ec2b1b7e7c /src/gameplay.cpp | |
parent | 202285e89814929e551f9568b84212282b5883fe (diff) |
mobs are a-okay
Diffstat (limited to 'src/gameplay.cpp')
-rw-r--r-- | src/gameplay.cpp | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/src/gameplay.cpp b/src/gameplay.cpp index d5969ac..7ffb1f2 100644 --- a/src/gameplay.cpp +++ b/src/gameplay.cpp @@ -168,53 +168,6 @@ int commonAIFunc(NPC *speaker) return 0; } -void commonPageFunc(Mob *callee) -{ - ui::drawPage(callee->heyid); - ui::waitForDialog(); - callee->health = 0; -} - -void commonTriggerFunc(Mob *callee) { - static bool lock = false; - XMLDocument xml; - XMLElement *exml; - - char *text,*pch; - if (!lock) { - lock = true; - - xml.LoadFile(currentXML.c_str()); - exml = xml.FirstChildElement("Trigger"); - - while(exml->StrAttribute("id") != callee->heyid) - exml = exml->NextSiblingElement(); - - player->vel.x = 0; - - ui::toggleBlackFast(); - ui::waitForCover(); - - text = new char[256]; - strcpy(text,exml->GetText()); - pch = strtok(text,"\n"); - - while(pch) { - ui::importantText(pch); - ui::waitForDialog(); - - pch = strtok(NULL,"\n"); - } - - delete[] text; - - ui::toggleBlackFast(); - - callee->health = 0; - lock = false; - } -} - void initEverything(void) { std::vector<std::string> xmlFiles; XMLDocument xml; |