Ok... I've been struggling with this for a while now, I figure its time... I'm just trying to get the syntax down for miniwindows. I use python so here is what I have...
I get the following error:
def OnPluginInstall():
win = world.GetPluginID
world.WindowCreate (win, 0, 0, 200, 200, 6, 0, #333333)
world.WindowShow (win, 'true')I get the following error:
Script error
Plugin: Most_Recent_Text (called from world: Dartmud)
Execution of line 158 column 32
Immediate execution
invalid syntax
Line in error:
world.WindowShow (win, 'true')
Error context in script:
154 : def OnPluginInstall():
155 :
156 : win = world.GetPluginID
157 : world.WindowCreate (win, 0, 0, 200, 200, 6, 0, #333333)
158*: world.WindowShow (win, 'true')