Search found 18 matches

by Dr_Malito
28 Dec 2007, 19:32
Forum: Server Side Extension Development
Topic: Sending a chat message to Smartfox from C#
Replies: 4
Views: 9210

Smartfox sends a message using sockets, you can catch it from many languages like C#, but there is a protocol around it, the Flash API is a client for that protocol that translate these messages to flash objects, maybe you'll have to create a C# API to catch friendly the messages.
by Dr_Malito
02 Oct 2007, 19:05
Forum: SmartFoxServer 1.x Discussions and Help
Topic: [UPDATE] Patch 1.5.9 available!
Replies: 14
Views: 41930

we love you lapo!
by Dr_Malito
26 Jun 2007, 14:57
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Printable Documentation
Replies: 2
Views: 6506

I vote for this!
by Dr_Malito
08 May 2007, 03:23
Forum: Server Side Extension Development
Topic: MySQL - I can not connect
Replies: 3
Views: 9370

if you are in windows, you can use odbc drivers
by Dr_Malito
16 Apr 2007, 16:19
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Another client problem
Replies: 4
Views: 10953

Thanks lapo!

problem resolved :D
by Dr_Malito
16 Apr 2007, 14:41
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Another client problem
Replies: 4
Views: 10953

it's 1.3.7

I'm using AS 2.0

The SmartFox Client is in a external class "SFClient"

import it.gotoandplay.smartfoxserver.*

class SFClient
{

private var smartfox:SmartFoxClient;
private var ip:String;
private var port:Number;
private var zone:String;

function SFClient()
{
this.ip = "127.0.0.1 ...
by Dr_Malito
16 Apr 2007, 13:42
Forum: SmartFoxServer 1.x Discussions and Help
Topic: problem with SmartfoxClient, please help.
Replies: 2
Views: 7961

Thanks patso!

that was exactly my problem. :D
by Dr_Malito
16 Apr 2007, 13:38
Forum: Server Side Extension Development
Topic: What I'm doing wrong?
Replies: 3
Views: 8796

thanks patso. That was the problem
by Dr_Malito
13 Apr 2007, 20:07
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Another client problem
Replies: 4
Views: 10953

Another client problem

I have this:

function onUserVariablesUpdate(userObj:User, changedVars:Array)
{
trace("onUserVariablesUpdate:" + userObj + ", changed vars: " + changedVars)

var variables:Object = userObj.getVariables()
var px:Number = variables["ypos"]
var py:Number = variables["ypos"]

trace("User ...
by Dr_Malito
13 Apr 2007, 17:03
Forum: SmartFoxServer 1.x Discussions and Help
Topic: problem with SmartfoxClient, please help.
Replies: 2
Views: 7961

problem with SmartfoxClient, please help.

Hi,

Please Lapo, Patso or any smartfox guru.. I'm stuck with this.

I'm creating a game using an extension with custom login.

In my config I have this:
<Zone name="mw" uCountUpdate="true" buddyList="20" maxUsers="4000" customLogin="true">
<Rooms>
<Room name="Lumina" maxUsers="50" isPrivate ...
by Dr_Malito
12 Apr 2007, 15:29
Forum: Server Side Extension Development
Topic: What I'm doing wrong?
Replies: 3
Views: 8796

What I'm doing wrong?

Hi, I'm creating a game where the players can move an avatar in the scene.

to update the position I want to use an extension, because I want to autorize the movement before the players do it. Then, send the update to the clients.

I have an extension based on the "simple login extension" in the ...
by Dr_Malito
11 Feb 2007, 16:18
Forum: SmartFoxServer 1.x Discussions and Help
Topic: To do a game :S
Replies: 1
Views: 5317

If you know actionscript, you can do it.

saludos from chile.
by Dr_Malito
15 Jan 2007, 14:42
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Need Help!! Please Help ME!!!
Replies: 3
Views: 8325

that's not so easy, but I think you need to make the avatar "bounce" 2 or 3 pixels when the hittest is detected.
by Dr_Malito
05 Jan 2007, 15:16
Forum: SmartFoxServer 1.x Discussions and Help
Topic: What is everyone working on? :D
Replies: 3
Views: 8086

I was working in two projects using AMFPHP, now i'm migrating them to SmartFoxServer.

The first is an avatar chat with pseudo-isometric view (the camera is isometric but you can walk in any direction) the idea is offer the software to some local companies and create personalized avatar chats for ...
by Dr_Malito
03 Jan 2007, 15:15
Forum: Features Wish List
Topic: server side setTimeout
Replies: 4
Views: 14858

in the docs there is a function called setInterval(), maybe are the function you are looking for.

myInterval = setInterval("simpleThread", 1000, params)