From e1ca0a15aec61c1bcc3eba325b12476e0600b41a Mon Sep 17 00:00:00 2001
From: scrawl <scrawl@baseoftrash.de>
Date: Sun, 17 Feb 2013 18:58:54 +0100
Subject: [PATCH] Add message box when item is added to player's inventory

---
 apps/openmw/mwscript/containerextensions.cpp | 23 +++++++++++++++++++-
 1 file changed, 22 insertions(+), 1 deletion(-)

diff --git a/apps/openmw/mwscript/containerextensions.cpp b/apps/openmw/mwscript/containerextensions.cpp
index 4cce19b862..68ae1b516f 100644
--- a/apps/openmw/mwscript/containerextensions.cpp
+++ b/apps/openmw/mwscript/containerextensions.cpp
@@ -60,6 +60,27 @@ namespace MWScript
                     }
 
                     MWWorld::Class::get (ptr).getContainerStore (ptr).add (ref.getPtr());
+
+                    // The two GMST entries below expand to strings informing the player of what, and how many of it has been added to their inventory
+                    std::string msgBox;
+                    std::string itemName = MWWorld::Class::get(ref.getPtr()).getName(ref.getPtr());
+                    if (count == 1)
+                    {
+                        msgBox = MyGUI::LanguageManager::getInstance().replaceTags("#{sNotifyMessage60}");
+                        std::stringstream temp;
+                        temp << boost::format(msgBox) % itemName;
+                        msgBox = temp.str();
+                    }
+                    else
+                    {
+                        msgBox = MyGUI::LanguageManager::getInstance().replaceTags("#{sNotifyMessage61}");
+                        std::stringstream temp;
+                        temp << boost::format(msgBox) % (count) % itemName;
+                        msgBox = temp.str();
+                    }
+
+                    if(count > 0)
+                        MWBase::Environment::get().getWindowManager()->messageBox(msgBox, std::vector<std::string>());
                 }
         };
 
@@ -130,7 +151,7 @@ namespace MWScript
                         }
                     }
                   
-                    /* The two GMST entries below expand to strings informing the player of what, and how many of it has been removed from their inventory */
+                    // The two GMST entries below expand to strings informing the player of what, and how many of it has been removed from their inventory
                     std::string msgBox;
                     if(originalCount - count > 1)
                     {