View Single Post
Old 09-12-10, 12:47 PM   #206
RdJ
Watch
 
Join Date: Sep 2010
Posts: 18
Downloads: 2
Uploads: 0
Quote:
Originally Posted by TheDarkWraith View Post
You can query the user's registry for it like I do in my UIs mod to gather all the ship's mast height data
Thanks, I got it to work

Now, I have a new issue
Code:
class MyServer(DdeServer):
 def __init__(self,service):
 base.service = service
 
def InitializeScript():
 # --- Start: Initialize DDE server --- #
 global SpeechServer
 SpeechServer = MyServer("shspeech")
 # --- End: Initialize DDE server --- #
Everytime, it says: MyServer() takes at least 2 arguments (1 given)

I've tried giving more arguments, but that doesn't work...
RdJ is offline   Reply With Quote