Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

Xoa rp emu edit // arrows

Status
Not open for further replies.
Experienced Elementalist
Joined
Sep 3, 2009
Messages
220
Reaction score
19
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

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:
lol Like I Said Its A Good Emu It Will Run On Any Db Just Few Edits To It If This Is Liked Enough Then Ill Probz Do A V2 Or Something
 
ty i will try not to i do it so i can read back on what i wrote so i know i spelt it right
 
like i said i didnt code the other parts of it only the arrow and arrow commands and delted a few things that was all
 
Status
Not open for further replies.
Back