Search the Community
Showing results for tags 'Plugin Development'.
-
Function Logger - 1.1.0 - What is it? It's a Plugin Development tool that does some logging of plugin data. If you need to know what event is triggered when, this tool is your friend! You can log everything, only events, only menu changes, and only inputs with a check in the appropriate box. Select the option to log GameData if you're tracking the GameExInfo variables, and select the UI Timer option to log GameEx timer ticks. I've been using this plugin for a while so I can learn my way around GameEx's PlugIn system, and I added an interface for the end user so you don't have to struggle to learn the ins and outs like I did my first time. How do I use it? Configure it, and enable it in the PlugIn Manager. By default (in its unconfigured state) it logs all activity and game data. What if I find a bug? Report it here! Any questions? Ask away. Feel free to offer suggestions on how I can make it better. Download it here: Download @ The GameEx Community Download Portal NOTES: I'm still working on enumerating the MenuChange event. If you use this and you get an "Unknown Menu!" popup in GameEx when you select an item, it would be helpful to me if you could post the menu number and the menu that was up on the screen at the time it was displayed so I can add it in to the MenuNumber enum in the plugin system. If you miss the popup, you can also find it in the log.
- 10 replies
-
- 5
-
- plugin
- function logger
-
(and 1 more)
Tagged with:
-
Thought I'd try and make it easier for would-be coders to "jump in" and get coding! It's not anything special, but if anyone needs it, here's a snap-in template for GameEx plugin creation. This ZIP file includes everything you need to get started, including: GameEx Plugin class, which is fully documented/updated for your coding pleasure. A log writing class (which is a modified version of Ben Baker's logging class... Thanks Ben!)An INI reading/writing class (which is a modified version of Ludvik Jerabek's INI class)A blank configuration formTo use it, all you need to do is put the uncompressed ZIP file in your Visual Studio 2010 Templates/Project Templates folder, start a new project, and select it from the list. All the settings have been set already (Strict:On, Target:x86, Framework:2.0). So... Get coding!!!!! Download it here.