Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Greek2me

Pages: 1 ... 5 6 7 8 9 [10]
136
Modification Help / Schedules Going Haywire!?
« on: October 08, 2010, 07:41:58 PM »
Whenever I set a schedule above about 20-30 minutes, the schedule goes crazy and loops every millisecond, however, when set below that, it acts normally:
Code: [Select]
function functionhere()
{
    cancel($varhere);
    //stuffhere
    $varhere = schedule(60000*30,0,functionhere);
}

This also happens with several other mods. To get a good example of this, check out the Auto Saver and set the autosave time higher than 30- exact same issue I described.

Any ideas on how to fix this?

Thanks

137
Modification Help / onPlant and onRemove errors?
« on: September 22, 2010, 09:35:02 PM »
I took a piece from Space Guy's TDM code that makes triggers on bricks. Whenever I plant or remove a brick, I get one of these errors:
Code: [Select]
Add-Ons/Server_VW_Extension/capturepoints.cs (114): Unknown command onPlant.
Add-Ons/Server_VW_Extension/capturepoints.cs (129): Unknown command onRemove.

I have no idea what's wrong since everything works, the only problem is that it gives an error. Here are the functions it refers to:
Code: [Select]
function fxDTSBrick::onPlant(%this)
    {
    Parent::onPlant(%this);
    if(%this.dataBlock.isVWCapturePoint)
        {
        %this.createTriggerZone(VWcontrolTriggerData);
        }
    }
function fxDTSBrick::onRemove(%this)
    {
    if(%this.dataBlock.isVWCapturePoint)
        {
        if(isObject(%this.triggerZone))
            {
            %this.triggerZone.delete();
            }
        }   
    Parent::onRemove(%this);
    }

No, I have not packaged these because whenever I package them, it returns a random syntax error.

138
Help / Blockland uses the wrong port
« on: June 03, 2010, 12:41:28 PM »
my dedicated server has decided to use port 28100 instead of port 28000. Here is the console log:
Code: [Select]
Starting Internet Server
Binding server port to default IP
UDP initialized on port 28100

Initializing UPnP...
--------------------
List of UPNP devices found on the network :

 desc: http://10.0.0.202:2869/upnphost/udhisapi.dll?content=uuid:57aa5c23-63d6-48bd-8fd3-2c5b1e597f47
 st: urn:schemas-upnp-org:device:InternetGatewayDevice:1


 desc: http://10.0.0.1:2869/IGatewayDeviceDescDoc
 st: urn:schemas-upnp-org:device:InternetGatewayDevice:1


Found valid IGD : http://10.0.0.1:2869/WANIPConnCtrlUrl

Local LAN ip address : 10.0.0.104

ExternalIPAddress = xx.xxx.xxx.xx

Internal IP:Port = 10.0.0.104:28100

External xx.xxx.xxx.xx:28100 UDP is redirected to internal 10.0.0.104:28100
(I replaced my external IP with Xs, dont want it floating around)

any way to make blockland use port 28000 again?

139
Help / Dedicated server issue on Ubuntu (Linux)
« on: December 25, 2009, 09:31:21 PM »
Hi,
I'm new to linux and need a little help. I want to run a dedicated server off of a linux machine, but nobody (not even me on LAN) can join it. The distribution is Ubuntu 9.10 Desktop (9.10 Server doesn't work either). I have downloaded wine and can actually run the dedicated server with it (the batch file runs), but it must be blocked by something, because I know that other people use linux. I tried disabling the gufw/ ufw firewall, but no luck. I also port forwarded.

Thanks

Pages: 1 ... 5 6 7 8 9 [10]