
Originally Posted by
Caelric
Because digital mods can't be used while you are moving (unless in test mode), thus making it somewhat pointless to have a "hands free" phone solution that doesn't work when you need it the most.
Thats not true! Adding the following code in your digimod (c#, but also possible in built in language) makes it "safe":
Code:
{
module = app.CreateModule("ModuleName");
module.IsSafe += new IModuleEvents_IsSafeEventHandler(module_IsSafe);
}
bool module_IsSafe()
{
return true;
}
Thats it...
Bookmarks