Search found 22 matches

by Nepaleno
28 Mar 2011, 09:17
Forum: OpenSpace v2 discussions and help
Topic: AvatarEvent.ROLL_OVER
Replies: 3
Views: 8511

So how's investigation? I'm having same problem here. CLICK event seems to work fine, but both ROLL_OVER and ROLL_OUT events don't fire.
by Nepaleno
23 Sep 2010, 05:20
Forum: OpenSpace v2 discussions and help
Topic: Strange grid
Replies: 5
Views: 9521

tileSize: 75
tileRatio: 0.5
by Nepaleno
17 Sep 2010, 07:23
Forum: OpenSpace v2 discussions and help
Topic: Avatar Name: Position & Length
Replies: 4
Views: 9142

You can write your own Ghost class and display it the way you like.
by Nepaleno
15 Sep 2010, 07:05
Forum: OpenSpace v2 discussions and help
Topic: Strange grid
Replies: 5
Views: 9521

Problem is that wall isn't solid - it's a bit "staired". We wanted to give player possibility to build walls in their rooms, so having it in background isn't solution.
by Nepaleno
14 Sep 2010, 11:55
Forum: OpenSpace v2 discussions and help
Topic: Strange grid
Replies: 5
Views: 9521

Strange grid

I wanted to build wall from one tile blocks, but what I got was this:

Image
by Nepaleno
14 Sep 2010, 11:44
Forum: OpenSpace v2 discussions and help
Topic: Question about runtime editing (just curious)
Replies: 3
Views: 7307

Nope?
by Nepaleno
14 Sep 2010, 07:32
Forum: OpenSpace v2 discussions and help
Topic: Question about runtime editing (just curious)
Replies: 3
Views: 7307

Question about runtime editing (just curious)

Inventory item can be placed on a map if its project id matches the map project id only.
Why?
by Nepaleno
17 Aug 2010, 07:49
Forum: OpenSpace v2 discussions and help
Topic: Can't create a map im new looking for help!
Replies: 2
Views: 6728

You might wanna try adding few tiles to your map, then "Create" button will become active. As for background, you can edit it in your *.fla file.
by Nepaleno
13 Aug 2010, 09:13
Forum: OpenSpace v2 discussions and help
Topic: How to get avatar id
Replies: 2
Views: 6512

How do I read documentation on basic classes, so I don't have to ask lame questions on forum?
by Nepaleno
10 Aug 2010, 07:43
Forum: OpenSpace v2 discussions and help
Topic: get avatar count
Replies: 4
Views: 9490

You can use room.getUserCount() when AVATAR_CREATED event is fired.
by Nepaleno
02 Aug 2010, 13:08
Forum: OpenSpace v2 discussions and help
Topic: Knowing the current avatarposition on server-side
Replies: 10
Views: 17519

Is it possible to know serverside if NPC is moving or standing at the moment?

The thing is I wanna send him to some position on map and perform some action when he's there. So serverside I gotta know if he's already there.
by Nepaleno
20 Jul 2010, 09:11
Forum: OpenSpace v2 discussions and help
Topic: question on NPC
Replies: 6
Views: 11416

Re:

There's function called setMyAvatarAction() in clientside API, which triggers PC avatar's onCustomAction event. How do I do it serverside for NPC?
by Nepaleno
19 Jul 2010, 07:17
Forum: OpenSpace v2 discussions and help
Topic: question on NPC
Replies: 6
Views: 11416

NPC custom action

How do I make NPC perform custom action?
by Nepaleno
31 May 2010, 06:24
Forum: OpenSpace v2 discussions and help
Topic: How to specify the server address for OpenSpace2 example
Replies: 1
Views: 5127

You can set it in connector component properties in Flash IDE
by Nepaleno
24 May 2010, 09:33
Forum: Server Side Extension Development
Topic: BAN & KICK USER
Replies: 21
Views: 27869

hello, i'm having a problem with implementing kick function.

Here's my clientside code:
var data:Object = new Object;
data.user = _user; // this is User class object
_smartFox.sendXtMessage('moderator', 'kick', data);

My extension request handler:
function handleRequest(cmd, params, user ...