Private Server Info and Support Thread

07/13/2014 12:39 Luffa#826
Quote:
Originally Posted by player.elite View Post
Hey Bau', I know how works this inventory system since I tried for hours how to make "the bug" useful (you know what I'm talking about :p). And the "weird thing" I'm talking about is the "loading" each time you modify something (move an item, sell, etc...) = the equipment's system wait for the answer of his request -> that's why I just want to check everything at once so you only wait when you click save (which saves all the configurations). If I'm still hard to understand just see how OldWarrior's equipment works -> I just stock variables etc... while the user makes his configurations, then, when you click save the server check both configs and if they are legits it saves it !
Yeah i know what you are talking about ;P

Anyways if you need a hand or 10 fingers, just poke to me on skype ;)

Best Regards Bau
07/13/2014 23:49 merce15#827
Help me please ! [Only registered and activated users can see links. Click Here To Register...]
07/14/2014 03:38 manulaiko3.0#828
Quote:
Originally Posted by merce15 View Post
Help me please ! [Only registered and activated users can see links. Click Here To Register...]
Check the resources urls and paths
07/14/2014 23:44 merce15#829
Quote:
Originally Posted by manulaiko3.0 View Post
Check the resources urls and paths
i'm confused :confused:

[Only registered and activated users can see links. Click Here To Register...]
07/15/2014 10:36 RUStitan#830
Help please. Does not go to the card writes Disconnecting.
[Only registered and activated users can see links. Click Here To Register...]
07/15/2014 18:24 0wnix#831
[Only registered and activated users can see links. Click Here To Register...]
Almost done ! Need to make it saves everything in sql db :)
I think I'll release it tomorrow :)
07/15/2014 20:14 Requi#832
Now you can directly see the server list in the topic. (Idea by me & Coded by Bau)
[Only registered and activated users can see links. Click Here To Register...]
07/15/2014 20:25 Luffa#833
Quote:
Originally Posted by Requi View Post
Now you can directly see the server list in the topic. (Idea by me & Coded by Bau)
[Only registered and activated users can see links. Click Here To Register...]
This should make it way more smooth to see when the server you are playing on is online, just by surfing on your favorite forum.

But remember Darkorbit.tv is still online for submitting your own server.
Add your server here: [Only registered and activated users can see links. Click Here To Register...]
It will auto update the image.

Best Regards Bau
07/16/2014 04:50 RUStitan#834
Help please. Does not go to the card writes Disconnecting.
[Only registered and activated users can see links. Click Here To Register...]
07/16/2014 23:25 0wnix#835
Can someone give me the source of the equipment system used by the most pservers please (with combobox etc...), I need to see which database values it modify then I will use the same on my equipment system so server's owners won't have much things to modifiy.

Thanks in advance.
07/17/2014 00:26 NoCheatImPGM#836
Quote:
Originally Posted by player.elite View Post
Can someone give me the source of the equipment system used by the most pservers please (with combobox etc...), I need to see which database values it modify then I will use the same on my equipment system so server's owners won't have much things to modifiy.

Thanks in advance.
Si tu passais un peu sur Skype de temps en temps, je pourrais, volontiers, te le donner mais tu me zap, Kevin... Enfin bref j'attends ton petit message et je te l'envoie :)

English: (Cause MuffinMario wanted to know what I wrote :p)

If you were a bit more on skype with me I could give you those files but, you aren't. Send me a message on skype and you'll get them :)
07/17/2014 11:52 Luffa#837
Quote:
Originally Posted by RUStitan View Post
Help please. Does not go to the card writes Disconnecting.
[Only registered and activated users can see links. Click Here To Register...]
We can't help you when you only gives us that little of an information.

A picture saying disconnecting can't give us any hints of what the issue is.

Best Regards Bau
07/17/2014 16:13 MuffinMario#838
Quote:
Originally Posted by NoCheatImPGM View Post
Si tu passais un peu sur Skype de temps en temps, je pourrais, volontiers, te le donner mais tu me zap, Kevin... Enfin bref j'attends ton petit message et je te l'envoie :)
You are allowed to speak English. Let everybody know what you're saying :/
07/17/2014 18:23 dopvpfan#839
Hİ... :)

how the same 3 stations are added to the map ?
I use azure 5.0 code :

Code:
private void sendMapInitData(uint userId)
        {
            if (this.Id == 42)
            {
                this.Users[userId].Send("0|s|0|1|redStation|1|1500|2500|6500");
                this.Users[userId].Send("0|CSS|1");
                this.Users[userId].Send("0|SMP|1|1");
            }
}
07/17/2014 18:26 NoCheatImPGM#840
Quote:
Originally Posted by dopvpfan View Post
Hİ... :)

how the same 3 stations are added to the map ?
I use azure 5.0 code :

Code:
private void sendMapInitData(uint userId)
        {
            if (this.Id == 42)
            {
                this.Users[userId].Send("0|s|0|1|redStation|1|1500|2500|6500");
                this.Users[userId].Send("0|CSS|1");
                this.Users[userId].Send("0|SMP|1|1");
            }
}
Here we are:
Code:
                if (this.mapId == 42)
                {
                    Send("0|s|0|1|MMO|1|1500|" + X+ "|" + Y);
                    Send("0|CSS|1");
                    Send("0|SMP|1|1");
                }
                if (this.mapId == 42)
                {
                    Send("0|s|1|1|EIC|2|1500|" + X+ "|" + Y);
                    Send("0|CSS|1");
                    Send("0|SMP|1|2");
                }
                if (this.mapId == 42)
                {
                    Send("0|s|2|1|VRU|3|1500|" + X+ "|" + Y);
                    Send("0|CSS|1");
                    Send("0|SMP|1|3");
                }