Gamestudio Links
Zorro Links
Newest Posts
AlpacaZorroPlugin v1.3.0 Released
by kzhao. 05/22/24 13:41
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
Change chart colours
by 7th_zorro. 05/11/24 09:25
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
3 registered members (AndrewAMD, Akow, degenerate_762), 1,430 guests, and 9 spiders.
Key: Admin, Global Mod, Mod
Newest Members
AemStones, LucasJoshua, Baklazhan, Hanky27, firatv
19055 Registered Users
Previous Thread
Next Thread
Print Thread
Rating: 5
Page 12 of 17 1 2 10 11 12 13 14 16 17
Re: ANet - Full version available now! [Re: croman] #240407
12/10/08 20:16
12/10/08 20:16
Joined: Jul 2005
Posts: 1,930
Austria
Dark_samurai Offline OP
Serious User
Dark_samurai  Offline OP
Serious User

Joined: Jul 2005
Posts: 1,930
Austria
I can't reproduce this bug. Are you sure you are including in the right order?

Code:
#include "acknex.h" //don't forget to put it into the game folder or use <>
#include "anet.h"
#include "default.c"


I'm using A7.50 without having the bug.


ANet - A stable and secure network plugin with multi-zone, unlimited players, voip, server-list features,... (for A7/A8)!
get free version
Re: ANet - Full version available now! [Re: Dark_samurai] #240475
12/11/08 06:10
12/11/08 06:10
Joined: Nov 2007
Posts: 1,032
Croatia
croman Offline
Serious User
croman  Offline
Serious User

Joined: Nov 2007
Posts: 1,032
Croatia
what is diag_status();? some ANet function or 3dgs function cause in my normal default.c there's no such function call.



Ubi bene, ibi Patria.
Re: ANet - Full version available now! [Re: croman] #240550
12/11/08 15:18
12/11/08 15:18
Joined: Jul 2002
Posts: 1,364
Minbar
M
MaxF Offline
Serious User
MaxF  Offline
Serious User
M

Joined: Jul 2002
Posts: 1,364
Minbar
Hi

Why does it say two versions on web site -
Quote:
> 2 different versions, depending on what you need


when there is only one to buy

Is there another version coming?


Re: ANet - Full version available now! [Re: MaxF] #240551
12/11/08 15:21
12/11/08 15:21
Joined: Jul 2005
Posts: 1,930
Austria
Dark_samurai Offline OP
Serious User
Dark_samurai  Offline OP
Serious User

Joined: Jul 2005
Posts: 1,930
Austria
Quote:
what is diag_status();? some ANet function or 3dgs function cause in my normal default.c there's no such function call.


It's a function of the Gamestudio debugger. It's in my default.c file! Have you tried, making the includes as I posted? Can you use the standard default.c file without problems? Can you use the pong example?

Yes, there is a PRO version with more features and unlimited clients planned (I'm currently working on it).

Last edited by Dark_samurai; 12/11/08 15:24.

ANet - A stable and secure network plugin with multi-zone, unlimited players, voip, server-list features,... (for A7/A8)!
get free version
Re: ANet - Full version available now! [Re: Dark_samurai] #240557
12/11/08 15:32
12/11/08 15:32
Joined: Nov 2007
Posts: 1,032
Croatia
croman Offline
Serious User
croman  Offline
Serious User

Joined: Nov 2007
Posts: 1,032
Croatia
in my version of default.c (in later version of 3dgs) diag_status(); doesn't exists



Ubi bene, ibi Patria.
Re: ANet - Full version available now! [Re: croman] #240964
12/13/08 17:19
12/13/08 17:19
Joined: Nov 2007
Posts: 1,032
Croatia
croman Offline
Serious User
croman  Offline
Serious User

Joined: Nov 2007
Posts: 1,032
Croatia
how can i know when some client sends to my client some message or even when it updates it's player entity on all clients including my client?



Ubi bene, ibi Patria.
Re: ANet - Full version available now! [Re: croman] #240980
12/13/08 19:14
12/13/08 19:14
Joined: Jul 2005
Posts: 1,930
Austria
Dark_samurai Offline OP
Serious User
Dark_samurai  Offline OP
Serious User

Joined: Jul 2005
Posts: 1,930
Austria
If you compare the current value of the player position and the last sent one:

Code:
var save_x;
var save_y;
var save_z;

while(1)
{
   if(my.x != save_x && my.y != save_y && my.z != save_z)
   {
      save_x = my.x;
      save_y = my.y;
      save_z = my.z;
      //do something...
   }
   wait(1);
}


I've updated to A7.60 and the default.c file works totally correct. Can you send me a testproject where your error occurs if you are online the next time (ICQ)?


ANet - A stable and secure network plugin with multi-zone, unlimited players, voip, server-list features,... (for A7/A8)!
get free version
Re: ANet - Full version available now! [Re: Dark_samurai] #240986
12/13/08 19:59
12/13/08 19:59
Joined: Nov 2007
Posts: 1,032
Croatia
croman Offline
Serious User
croman  Offline
Serious User

Joined: Nov 2007
Posts: 1,032
Croatia
ok thnx.

no need for that smile...'cause it will work on your pc. as i said in my default.c there is no diag_status(); function and in yours from newer version of 3dgs there is so i firmly believe that this is the reason why it didn't work



Ubi bene, ibi Patria.
Re: ANet - Christmas offer! [Re: croman] #241111
12/14/08 15:32
12/14/08 15:32
Joined: Jul 2005
Posts: 1,930
Austria
Dark_samurai Offline OP
Serious User
Dark_samurai  Offline OP
Serious User

Joined: Jul 2005
Posts: 1,930
Austria
*******************************************************************************
I want to announce my Christmas offer: -24% for the ANet Standard Version
(instead of 59.00€ only 38.94€)

The offer runs until 23.12.2008!
*******************************************************************************

@cerberi_croman: Thought you've updated to A7.60...
If you want you can send your default.c file to me and I will modify it, so that it shows the ANet specific data wink


ANet - A stable and secure network plugin with multi-zone, unlimited players, voip, server-list features,... (for A7/A8)!
get free version
Re: ANet - Christmas offer! [Re: Dark_samurai] #241154
12/14/08 19:24
12/14/08 19:24
Joined: Jul 2005
Posts: 1,930
Austria
Dark_samurai Offline OP
Serious User
Dark_samurai  Offline OP
Serious User

Joined: Jul 2005
Posts: 1,930
Austria
Ok, I've solved the PM problem!!!
I'm sorry for everybody who sent me a PM in the last time, I didn't received any of them because my message box was full (I thought I get a warning message ^^)...

Please send me your PM's again, so that I can answer them!

I'm verry sorry for the troubles!


ANet - A stable and secure network plugin with multi-zone, unlimited players, voip, server-list features,... (for A7/A8)!
get free version
Page 12 of 17 1 2 10 11 12 13 14 16 17

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1