There isn’t much tutorials for on unity3D for appwarp and I couldn’t understand the API. Is there a way to join match for multiplayer without the ip adress and the port but by just entering the player’s name. (At the start of my game, it would ask you to type in your nickname that you will use for the game and it is stored in PlayerPrefs.) can anyone do a full explanation on appwarp?
There are enough Unity3D tutorials on AppWarp. Enough that I was able to get my game going with 2 to 4 players.
http://blogs.shephertz.com/2013/04/30/make-real-time-multiplayer-games-using-unity3d/
Is there a way to generate a room through code? Because I just want the player to enter the other person’s nickname to play with them without the room ID, port or ip address
You can dynamically create rooms with properties. And I would imagine one of the properties could be the other person’s ID or user/player name using this function:
public void CreateRoom(String name, String owner, int maxUsers, Dictionary<String, Object> tableProperties)
Then the other person could join the room that has the properties that you specified using this function:
public void JoinRoomWithProperties(Dictionary<String, Object> tableProperties)
Of course there is some setup/initialization before you get to the point of creating/joining rooms
K thanks, Another question is, I’ve started on appwarp but when I initialized it it says that The name `WarpClient’ does not exist in the current context and I’ve done exactly what the tutorials have done. I code I’ve done is :
void Start () {
WarpClient.initialize(apiKey, secretKey);
}
(I’ve got string variables for apikey and secretkeys) What have I done wrong? The namespaces I’ve got are:
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
You need to add the AppWarpUnity.dll to your project

I did that already, is there a specific folder that I should put it i or something? I put it in my plugins folder. When I downloaded the SDK it comes with AppWarpUnityMobile and my target platform is iOS. Is that the reason why its not working?
I really need help! I don’t why its giving that error!
I don’t have the AppWarpUnity.dll in a my plugins folder. I have it in the Assets/AppWarp/AppWarpUnity.dll
Try that.
i want to create the room and join that created one…How.
?