[SERVICE] Custom Commands Database - Request/Post Here

Page 12 of 38 FirstFirst ... 2456789101112131415161718192022 ... LastLast
Results 166 to 180 of 556
  1. #166
    Garry's Mod is addictive! Law is offline
    MemberRank
    Dec 2009 Join Date
    NorwayLocation
    993Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    where do we actually put theese codes in the c# ?

    I'm using this emulator: Vista4Life's & Shine-Away's V26 Source
    Last edited by Law; 02-07-10 at 11:56 PM.

  2. #167
    Account Upgraded | Title Enabled! Sledmore is offline
    MemberRank
    Jun 2009 Join Date
    1,133Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    in the virtualusers.cs file :').

  3. #168
    Garry's Mod is addictive! Law is offline
    MemberRank
    Dec 2009 Join Date
    NorwayLocation
    993Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    Quote Originally Posted by Sledmore View Post
    in the virtualusers.cs file :').
    thanks, but idk where in it to put lol, each time im getting an error :p

    the case thing is the error :-s what do i do? xD

  4. #169
    Alpha Member Zak© is offline
    MemberRank
    Oct 2007 Join Date
    2,693Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    1. Go to Virtualuser.cs
    2. press CTRL F And Find Public Commands
    and then paste the commands under there any error then your probs using a dissi command on the emu or its just the commands

    if command has

    DB.runQuery then its for vista handyandys etc
    if the commands dbclient.runQuery Then Its For Dissis Edit

  5. #170
    yerro Adde is offline
    MemberRank
    Feb 2010 Join Date
    none ur bizzLocation
    2,731Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    Quote Originally Posted by Habboretromaker View Post
    1. Go to Virtualuser.cs
    2. press CTRL F And Find Public Commands
    and then paste the commands under there any error then your probs using a dissi command on the emu or its just the commands

    if command has

    DB.runQuery then its for vista handyandys etc
    if the commands dbclient.runQuery Then Its For Dissis Edit
    I showed him on Teamviewer, so he dont need help anymore. And btw. Can u get me the :pet command? And whats ur msn?

  6. #171
    ส็็็็็็็ Bloodraven is offline
    MemberRank
    Sep 2009 Join Date
    AntarcticaLocation
    2,414Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    Why is this thread turning into a uber command thread? can you see making uber emulator commands in the thread title?

  7. #172
    Garry's Mod is addictive! Law is offline
    MemberRank
    Dec 2009 Join Date
    NorwayLocation
    993Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    Could you make a toll command for one way gate ways?
    :toll <amount>
    Holograph Emulator (i think its by nillus)
    What it does: It does so the one way gate in front of him gets a toll(toll amount that %user% types)
    max toll should be 5000

  8. #173
    Alpha Member Zak© is offline
    MemberRank
    Oct 2007 Join Date
    2,693Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    Code:
                        #region Pet Commands
                        #region :pet
                        case "pet": // pet transform command
                            {
                                if (rankManager.containsRight(this, "fuse_administrator_access", userID) == false)
                                    return false;
                                else
                                {
                                    if (Room != null) // In room?
                                    {
                                        try
                                        {
                                            if (args[1] == "cat")
                                            {
                                                _petType = "1";
                                            }
                                            else if (args[1] == "dog")
                                            {
                                                _petType = "0";
                                            }
                                            else if (args[1] == "croc")
                                            {
                                                _petType = "2";
                                            }
                                            else
                                            {
                                                _petType = "0";
                                            }
                                        }
                                        catch { _petType = "1"; }
    
                                        try
                                        {
                                            if (args[2] == "red")
                                            {
                                                _petColour = "FF0000";
                                            }
                                            else if (args[2] == "green")
                                            {
                                                _petColour = "00FF00";
                                            }
                                            else if (args[2] == "blue")
                                            {
                                                _petColour = "0025FF";
                                            }
                                            else if (args[2] == "black")
                                            {
                                                _petColour = "000000";
                                            }
                                            else if (args[2] == "white")
                                            {
                                                _petColour = "FFFFFF";
                                            }
                                            else if (args[2] == "random" || args[2] == "?")
                                            {
                                                Random rndInt = new Random();
    
                                                _petColour = rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9).ToString() + rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9) + rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9).ToString();
                                            }
                                        }
                                        catch
                                        {
                                            Random rndInt = new Random();
    
                                            _petColour = rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9).ToString() + rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9) + rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9).ToString();
                                        }
    
                                        _isPet = !_isPet;
                                        Room.sendData(@"@\" + roomUser.detailsString);
                                    }
                                }
    
                                break;
                            }
                        #endregion
                        #region :pet_user
                        case "pet_user": // pet command
                            {
                                if (rankManager.containsRight(this, "fuse_administrator_access", userID) == false)
                                    return false;
                                else
                                {
                                    virtualUser Target = userManager.getUser(args[1]);
    
                                    if (Target.Room != null) // In room?
                                    {
    
                                        try
                                        {
                                            if (args[2] == "cat")
                                            {
                                                Target._petType = "1";
                                            }
                                            else if (args[2] == "dog")
                                            {
                                                Target._petType = "0";
                                            }
                                            else if (args[2] == "croc")
                                            {
                                                Target._petType = "2";
                                            }
                                            else
                                            {
                                                Target._petType = "0";
                                            }
                                        }
                                        catch { Target._petType = "1"; }
    
                                        try
                                        {
                                            if (args[3] == "red")
                                            {
                                                Target._petColour = "FF0000";
                                            }
                                            else if (args[3] == "green")
                                            {
                                                Target._petColour = "00FF00";
                                            }
                                            else if (args[3] == "blue")
                                            {
                                                Target._petColour = "0025FF";
                                            }
                                            else if (args[3] == "black")
                                            {
                                                Target._petColour = "000000";
                                            }
                                            else if (args[3] == "white")
                                            {
                                                Target._petColour = "FFFFFF";
                                            }
                                            else if (args[3] == "random" || args[3] == "?")
                                            {
                                                Random rndInt = new Random();
    
                                                Target._petColour = rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9).ToString() + rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9) + rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9).ToString();
                                            }
                                        }
                                        catch
                                        {
                                            Random rndInt = new Random();
    
                                            Target._petColour = rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9).ToString() + rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9) + rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9).ToString();
                                        }
    
                                        Target._isPet = !Target._isPet;
                                        Target.Room.sendData(@"@\" + Target.roomUser.detailsString);
                                    }
                                }
    
                                break;
                            }
                        #endregion
                        #endregion
    Should work for Handyandys Edit not sure for Dissis

    ---------- Post added at 03:13 PM ---------- Previous post was at 03:12 PM ----------

    And Rep You Gonna Neeed Alot of stuff in emu And A Db Colum Ill Try Later

  9. #174
    Account Upgraded | Title Enabled! Sledmore is offline
    MemberRank
    Jun 2009 Join Date
    1,133Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    If its an RP emu for the pet command, may i remind you to add it to the hit commands, and poof commands, so pets cannot hit / be hit / poof.

  10. #175
    Alpha Member Zak© is offline
    MemberRank
    Oct 2007 Join Date
    2,693Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    like afk Yea ThanKS rEMINDING BUT DONT THINK ITS FOR RP

  11. #176
    Account Upgraded | Title Enabled! Sledmore is offline
    MemberRank
    Jun 2009 Join Date
    1,133Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    Quote Originally Posted by Habboretromaker View Post
    like afk Yea ThanKS rEMINDING BUT DONT THINK ITS FOR RP
    Okay then, :').

  12. #177
    Brad Bradshly is offline
    MemberRank
    Aug 2007 Join Date
    Ragezone :DLocation
    611Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    Anyone able to make commands for UberEMu

  13. #178
    hi i'm robbie Roper is offline
    MemberRank
    Oct 2008 Join Date
    /home/roperLocation
    2,283Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    Quote Originally Posted by cooltrader View Post
    Anyone able to make commands for UberEMu
    This thread is for HOLOGRAPH EMULATOR COMMANDS only. Post a help thread if you want to ask that question, otherwise stick to the damn topic.

  14. #179
    sexiess is a sin. Subway is offline
    MemberRank
    Jun 2010 Join Date
    2,491Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    what doe you mean by :hotelalert code? to edit ha etc check sys strings in db.. jw

  15. #180
    Alpha Member Zak© is offline
    MemberRank
    Oct 2007 Join Date
    2,693Posts

    Re: [SERVICE] Making Holograph Emulator commands [SERVICE]

    Taking Command Requests Only Holograph R26-R35



Advertisement