now i use to work for nebborp.net but getting my own hotel back online i coded a emu for them nothing big
its a edit of xoa emu now the orignial coder of xoa has taken his arrow codes out of xoa for public release so i coded my own arrows added to this emu u can take them out rip this source apart i dont care i am done with it
its got all the normal rp commands plus a few coded by jammy
and if u dont wanan download the source
heres the arrow code
add to virtual room under some where
Yes This Is A Bad Thread I Just Wanted To Release It So I Can delete It I Hate Rp So
Use This For Whatever Its A Good Emu U May Notice I Removed All The Names From Boot And Running Just Named Emualator Cause I Couldnt Be Fked With Xoa Emu Even Knows Its HOLOEMu
its a edit of xoa emu now the orignial coder of xoa has taken his arrow codes out of xoa for public release so i coded my own arrows added to this emu u can take them out rip this source apart i dont care i am done with it
its got all the normal rp commands plus a few coded by jammy
To view the content, you need to sign in or register
and if u dont wanan download the source
heres the arrow code
add to virtual room under some where
Code:
} using (DatabaseClient dbClient = Eucalypt.dbManager.GetClient())
{
dbClient.runQuery("UPDATE users SET x = '" + nextX + "', y = '" + nextY + "' WHERE name = '" + roomUser.User._Username + "'");
int action = dbClient.getInt("SELECT id FROM action_spots WHERE rid = '" + roomUser.User._roomID + "' AND x = '" + nextX + "' AND y = '" + nextY + "'");
if (action == null)
{
break;
}
else
if (action > 0)
{
string action2;
action2 = dbClient.getString("SELECT actiontwo FROM action_spots WHERE rid = '" + roomUser.User._roomID + "' AND x = '" + nextX + "' AND y = '" + nextY + "'");
int actiontwox;
actiontwox = dbClient.getInt("SELECT x FROM action_spots WHERE id = '" + action2 + "'");
int actiontwoy;
actiontwoy = dbClient.getInt("SELECT y FROM action_spots WHERE id = '" + action2 + "'");
int actiontworoomid;
actiontworoomid = dbClient.getInt("SELECT rid FROM action_spots WHERE id = '" + action2 + "'");
if (actiontworoomid == roomUser.User._roomID)
{
roomUser.X = actiontwox;
roomUser.Y = actiontwoy;
roomUser.User.refreshAppearance(false, false, true);
dbClient.runQuery("UPDATE users SET x = '" + actiontwox + "', y = '" + actiontwoy + "', avoid = '1' WHERE name = '" + roomUser.User._Username + "'");
}
else
{
dbClient.runQuery("UPDATE users SET x = '" + actiontwox + "', y = '" + actiontwoy + "', avoid = '0' WHERE name = '" + roomUser.User._Username + "'");
roomUser.User.sendData("D^" + "H" + Encoding.encodeVL64(actiontworoomid));
}
}
else
{
}
}
Yes This Is A Bad Thread I Just Wanted To Release It So I Can delete It I Hate Rp So
Use This For Whatever Its A Good Emu U May Notice I Removed All The Names From Boot And Running Just Named Emualator Cause I Couldnt Be Fked With Xoa Emu Even Knows Its HOLOEMu
Last edited: