Search found 21 matches

by rik.schennink
18 Jul 2006, 05:48
Forum: Server Side Extension Development
Topic: % character
Replies: 2
Views: 8081

okay thx! looking forward to next version. :)
by rik.schennink
17 Jul 2006, 08:44
Forum: Server Side Extension Development
Topic: % character
Replies: 2
Views: 8081

% character

when i send a sentence with a % as a str message to the server the server cuts the sentence at the % position.

50% => 50
50 lines of code is 50% of 100 lines of code => 50 lines of code is 50

the following is sent to the server [Sending]: %xt%eJockeyBar%chat%2%false%50%%

I understand what is ...
by rik.schennink
02 Jun 2006, 09:39
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Message exceed allowed max length.
Replies: 1
Views: 5746

Message exceed allowed max length.

/124.0.90.2
11:44:00.836 - [ WARNING ] > Message exceed allowed max length! (0 bytes) from >
/124.0.90.2
11:44:00.836 - [ WARNING ] > Message exceed allowed max length! (0 bytes) from >
/124.0.90.2
11:44:00.836 - [ WARNING ] > Message exceed allowed max length! (0 bytes) from >
/124.0.90.2
11:44 ...
by rik.schennink
31 May 2006, 13:15
Forum: The Bug Trap
Topic: I think i found a bug in the connection handling
Replies: 9
Views: 306

I have already implemented such a timeout :)

It would be nice however if the onConnection event fired.. if that is not possible, then its not a problem because with the timeout it works fine.
by rik.schennink
31 May 2006, 08:43
Forum: The Bug Trap
Topic: I think i found a bug in the connection handling
Replies: 9
Views: 306

I dont expect him to connect, but i expect an onConnection event to be fired when it cant (and can), and that is not happening always.

We build an array with possible addresses to connect to, the server tries to connect to ipaddress:80, if that doesnt work, it tries to connect to ipaddress:9339 ...
by rik.schennink
31 May 2006, 08:05
Forum: The Bug Trap
Topic: I think i found a bug in the connection handling
Replies: 9
Views: 306

I have no public server ip to hand u, we are still testing this on our local network.

I think it is easy to test:

try to connect to port:80 on you localhost (not in sanbox mode, and with the server running at port:9339).. i dont get a response.. (i tested with ports 21,80,1020,1040, they also give ...
by rik.schennink
31 May 2006, 07:47
Forum: Features Wish List
Topic: Ports
Replies: 1
Views: 7643

Ports

A nice feature would be if i can have the server listen to multiple ports at once. :)
by rik.schennink
30 May 2006, 13:22
Forum: The Bug Trap
Topic: I think i found a bug in the connection handling
Replies: 9
Views: 306

I think i found a bug in the connection handling

We have the following problem:

- we have a server running a smartfox server @ port 80.
- when we try to connect to the smartfox server @ port 9339 the smartfox.onConnection event doesnt fire.. However when we stop the server while trying to connect the server fires all the previous events before it ...
by rik.schennink
20 Apr 2006, 05:58
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Game Logic
Replies: 1
Views: 6534

Game Logic

Hello :)

First, thx for all the help thusfar, the way u guys assist developers is just great! :D

Now, I read in the documentation and tutorials that it is best for performance to put the game logic in the zone extension.

Now i came to the point i am going to write the game logic but i cant figure ...
by rik.schennink
14 Apr 2006, 06:56
Forum: SmartFoxServer 1.x Discussions and Help
Topic: smartfox events
Replies: 3
Views: 8256

Thx for the small tutorial :D I now totally understand :)
by rik.schennink
13 Apr 2006, 13:31
Forum: Server Side Extension Development
Topic: SmartFox server and Windows 2003 Web Edition
Replies: 1
Views: 7301

SmartFox server and Windows 2003 Web Edition

Does that combo work?

My boss wonders if it is required to buy a Windows 2003 standard edition or web edition, if smartfox works on the web edition that would save a couple bucks. 8)
by rik.schennink
13 Apr 2006, 07:37
Forum: SmartFoxServer 1.x Discussions and Help
Topic: smartfox events
Replies: 3
Views: 8256

smartfox events

I was wondering, i created a class to handle all the smartfox things happening.. i noticed that i can use.. smartfox.onLogin.. smartFox.onJoinRoom.. and so on..

When i create a class and want to listen to events originating from the class i cannot do it like u guys do..

suppose i have a class ...
by rik.schennink
03 Apr 2006, 12:57
Forum: Server Side Extension Development
Topic: getRoomByName
Replies: 8
Views: 20611

i have a

var zone;

then in the init function i set the zone var to the currentzone..

but i tried your suggestion, unfortunately it didn't work


trace(danceID + " | " + _server.getCurrentZone().getRoomByName(danceID).getId());



[mcZone.as]: 19 | 3
[mcZone.as]: 18 | 3
[mcZone.as]: 12 | 3 ...
by rik.schennink
03 Apr 2006, 12:50
Forum: Server Side Extension Development
Topic: getRoomByName
Replies: 8
Views: 20611

tried it already :) didnt work. :(
by rik.schennink
03 Apr 2006, 12:38
Forum: Server Side Extension Development
Topic: getRoomByName
Replies: 8
Views: 20611

Okay the function is now visible above. It is written as a testcase.. to show that something is not going right.

the first part prints the danceID given and the matching roomID found with the getRoomByName function. I have 3 rooms in the database (as stated) when i enter danceid 18 it should give ...