[SERVICE] Custom Commands Database - Request/Post Here

Page 8 of 38 FirstFirst 1234567891011121314151618 ... LastLast
Results 106 to 120 of 556
  1. #106
    Alpha Member Zak© is offline
    MemberRank
    Oct 2007 Join Date
    2,693Posts

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

    Look At Page 3 Should Be Called Bite

  2. #107
    Developer Eronisch is offline
    MemberRank
    Jul 2009 Join Date
    The NetherlandsLocation
    1,328Posts

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

    Quote Originally Posted by Habboretromaker View Post
    Look At Page 3 Should Be Called Bite
    ;o but i asked for a bit more advanced code.
    That you only can bite if you are close to the target.

    Edit: And if you bited someon it gives a random rare from a couple furniture ids.
    Last edited by Eronisch; 06-06-10 at 10:39 PM.

  3. #108
    Ultra Light Beam Makarov is offline
    MemberRank
    Apr 2010 Join Date
    GothamLocation
    3,622Posts

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

    Quote Originally Posted by Admiral-Speedy View Post
    I don't need a command, but I dropped in to see how this was going, great work on the commands, I'm using some of them right now!
    You Sound... Kinda Stupid

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

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

    Quote Originally Posted by Habboretromaker View Post
    Heres Some Commands Enjoy For Zombie U Might Have to Say Username Instead Of X And This Is For Dissi


    ---------- Post added at 10:26 PM ---------- Previous post was at 10:21 PM ----------

    Marry Propose And Divorce Enjoy

    You Gotta Make A Marriage In Db You Can Edit Marry So u Get A Badge

    ---------- Post added at 10:30 PM ---------- Previous post was at 10:26 PM ----------


    You Gotta Make Two Things In Db Its Gang And Gangmember Enjoy

    ---------- Post added at 10:32 PM ---------- Previous post was at 10:30 PM ----------

    Credits: -Jordan- And Me Commands From His Emulator And Db And Etc Edited By Me To Work On Dissi's Please Dont Say There Crap Because Just Started To C#
    You have done some improvements to this that i wouldnt of spotted out.

  5. #110
    Developer Eronisch is offline
    MemberRank
    Jul 2009 Join Date
    The NetherlandsLocation
    1,328Posts

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

    Can anyon code my requested commands?

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

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

    Quote Originally Posted by -Jordan- View Post
    You have done some improvements to this that i wouldnt of spotted out.
    Really? Means Alot Coming From A Good Coder

  7. #112
    Apprentice stefano9 is offline
    MemberRank
    Apr 2007 Join Date
    17Posts

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

    Hey i got ubercms and uberemulator but where i need to add the commands??
    somebody knows?

    and i need a command named:
    :credits <name> <amount>

    :pixels <name> <amount>

    Thank you ;)

  8. #113
    Developer Eronisch is offline
    MemberRank
    Jul 2009 Join Date
    The NetherlandsLocation
    1,328Posts

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

    This thread is a bit death..

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

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

    Emu: Lost_Memory's V26 Source(non tdbp)
    Command: :rebootemu
    What it does:
    Makes the emulator reboot.

  10. #115
    Member whopps is offline
    MemberRank
    Jun 2009 Join Date
    CanadaLocation
    59Posts

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

    Hey..
    :gift

    Does anyone remember on openhotel the :gift command which would give you a gift containing a random furni ID..that could be any id from the database?

    source: Dissi's edit

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

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

    Looks like the person isnt doing commands anymore?? Correct me if im wrong though please.

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

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

    Roper I CCan Do A Refresh Command So Like Refresh Cata Etc Ok?

  13. #118
    Occasional Visitor Cecer is offline
    MemberRank
    Aug 2006 Join Date
    EnglandLocation
    743Posts

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

    Quote Originally Posted by whopps View Post
    Hey..
    :gift

    Does anyone remember on openhotel the :gift command which would give you a gift containing a random furni ID..that could be any id from the database?

    source: Dissi's edit
    Here, this should do it.

    PHP Code:
                        case "gift"// Warps the virtual user to a certain X,Y coordinate
                            
    {
                                
    int TID;
                                
    using (DatabaseClient dbClient Eucalypt.dbManager.GetClient())
                                {
                                    
    dbClient.addParameterWithValue("userid"userID);
                                    if (
    dbClient.findsResult("SELECT id FROM users WHERE id = @userid AND gifted = 0"))
                                        return; 
    // Already used :gift
                                    
    TID dbClient.getInteger("SELECT tid FROM catalogue_items ORDER BY RAND() LIMIT 1");
                                    
    dbClient.runQuery("UPDATE users SET gifted = 1 WHERE id = @userid");
                                }
                                
    catalogueManager.handlePurchase(TIDuserID0""00);
                                break;
                            } 

    Execute this query
    Code:
    ALTER  TABLE  `users`  ADD  `gifted` TINYINT NOT  NULL DEFAULT  '0'

  14. #119
    Member whopps is offline
    MemberRank
    Jun 2009 Join Date
    CanadaLocation
    59Posts

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

    Quote Originally Posted by cecer1 View Post
    Here, this should do it.

    PHP Code:
                        case "gift"// Warps the virtual user to a certain X,Y coordinate
                            
    {
                                
    int TID;
                                
    using (DatabaseClient dbClient Eucalypt.dbManager.GetClient())
                                {
                                    
    dbClient.addParameterWithValue("userid"userID);
                                    if (
    dbClient.findsResult("SELECT id FROM users WHERE id = @userid AND gifted = 0"))
                                        return; 
    // Already used :gift
                                    
    TID dbClient.getInteger("SELECT tid FROM catalogue_items ORDER BY RAND() LIMIT 1");
                                    
    dbClient.runQuery("UPDATE users SET gifted = 1 WHERE id = @userid");
                                }
                                
    catalogueManager.handlePurchase(TIDuserID0""00);
                                break;
                            } 

    Execute this query
    Code:
    ALTER  TABLE  `users`  ADD  `gifted` TINYINT NOT  NULL DEFAULT  '0'
    Reason why .addParametreWithValue, and DbClient.getinteger wont work..?:\

  15. #120
    Account Upgraded | Title Enabled! iJakey is offline
    MemberRank
    May 2010 Join Date
    355Posts

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

    Cecer, why not release Habbz old emu with wobbley squabbly?



Advertisement