[SERVICE] Custom Commands Database - Request/Post Here

Page 18 of 38 FirstFirst ... 8101112131415161718192021222324252628 ... LastLast
Results 256 to 270 of 556
  1. #256
    Proficient Member Supers'X is offline
    MemberRank
    Jul 2010 Join Date
    The NetherlandsLocation
    150Posts

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    Invisible command for Dissi TDBP.

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

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    Quote Originally Posted by Supers'X View Post
    Invisible command for Dissi TDBP.
    You Gotta Add Lot off stuff its beeter if u use handyandys version because stuffs already added

  3. #258
    Proficient Member TehForgiven is offline
    MemberRank
    Mar 2008 Join Date
    185Posts

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    :arrestuser name time(Seconds)
    Rastas Roleplay Server

    Could you make it so it will send the user to certain co-ords, which I could set :)? And wen the time is over, Send them to hotel view.

  4. #259
    Proficient Member Supers'X is offline
    MemberRank
    Jul 2010 Join Date
    The NetherlandsLocation
    150Posts

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    Quote Originally Posted by Habboretromaker View Post
    You Gotta Add Lot off stuff its beeter if u use handyandys version because stuffs already added
    Can you give me the download link to that source? Thank you.

  5. #260
    Proficient Member mango2735 is offline
    MemberRank
    Jun 2010 Join Date
    176Posts

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    Ok firstly the cmmd you want is kinda is i might code it for you but you just gtta edit the jailtimer to make it faster.

    2. ofr your coord request you have to be specific wt room?



    to: TehForgiven

  6. #261
    Member SuperShane is offline
    MemberRank
    Jun 2007 Join Date
    90Posts

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    Can someone make the command for v26 rp, so that when you die it sends you to the hospital ward please
    Last edited by SuperShane; 12-07-10 at 01:42 AM.

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

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    ?????
    Seriously?
    Just edit the damn Hit Command -_-

    ---------- Post added at 07:52 PM ---------- Previous post was at 07:50 PM ----------

    Quote Originally Posted by RastaLulz View Post
    Here's a command that I wrote yesterday for someone that allows an administrator on the RP source that I released to hire anyone to a specific job.
    PHP Code:
                        #region :superhire <user> <corpid> <rank>
                        
    case "superhire":
                            {
                                if (
    _Rank 6)
                                {
                                    
    virtualUser User userManager.getUser(args[1]);
                                    
    int corpID int.Parse(args[2]);
                                    
    int rank int.Parse(args[3]);
                                    
    using (DatabaseClient dbClient Eucalypt.dbManager.GetClient())
                                    {
                                        
    int secureID dbClient.getInt("SELECT id FROM jobs_ranks WHERE corp_id = '" corpID "' && job_rank = '" rank "'");
                                        
    string jobTitle dbClient.getString("SELECT motto FROM jobs_ranks WHERE corp_id = '" corpID "' && job_rank = '" rank "'");
                                        
    dbClient.runQuery("UPDATE users SET corp_id = '" corpID "', job_rank = '" rank "', secure_id = '" secureID "' WHERE name = '" User._Username "'");
                                        
    Room.sendSaying(roomUser"*hires " User._Username " as " jobTitle "*");
                                    }
                                }
                                break;
                            }
                        
    #endregion 
    Why not just make a command that hires managers?

  8. #263
    Proficient Member mango2735 is offline
    MemberRank
    Jun 2010 Join Date
    176Posts

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    Ok here a command I made :discharge user . which sets u free from being dead.

    Code:
     #region :discharge <user>
                        case "discharge":
                            {
                                virtualUser User = userManager.getUser(args[1]);
                                if (User._roomID == _roomID)
                                {
                                    int getJob;
                                    int isWorking;
                                    int getAuth;
                                    using (DatabaseClient dbClient = Eucalypt.dbManager.GetClient())
                                    {
                                        getJob = dbClient.getInt("SELECT secure_id FROM users WHERE name = '" + _Username + "'");
                                        isWorking = dbClient.getInt("SELECT working FROM users WHERE name = '" + _Username + "'");
                                        getAuth = dbClient.getInt("SELECT deaths FROM jobs_ranks WHERE id = '" + getJob + "'");
                                    }
                                    if (getAuth > 0 && isWorking > 0)
                                    {
                                        using (DatabaseClient dbClient = Eucalypt.dbManager.GetClient())
                                        {
                                            dbClient.runQuery("UPDATE users SET dead = '0' WHERE name = '" + User._Username + "'");
                                        }
    
                                        Room.sendSaying(roomUser, "*discharge " + User._Username + " from hospital*");
    
                                        User.refreshAppearance(true, true, true);
                                        User.deadLooper.Abort();
                                        User.deadLooper = null;
                                    }
                                }
                                break;
                            }
                        #endregion

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

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    Quote Originally Posted by mango2735 View Post
    Ok here a command I made :discharge user . which sets u free from being dead.

    Code:
     #region :discharge <user>
                        case "discharge":
                            {
                                virtualUser User = userManager.getUser(args[1]);
                                if (User._roomID == _roomID)
                                {
                                    int getJob;
                                    int isWorking;
                                    int getAuth;
                                    using (DatabaseClient dbClient = Eucalypt.dbManager.GetClient())
                                    {
                                        getJob = dbClient.getInt("SELECT secure_id FROM users WHERE name = '" + _Username + "'");
                                        isWorking = dbClient.getInt("SELECT working FROM users WHERE name = '" + _Username + "'");
                                        getAuth = dbClient.getInt("SELECT deaths FROM jobs_ranks WHERE id = '" + getJob + "'");
                                    }
                                    if (getAuth > 0 && isWorking > 0)
                                    {
                                        using (DatabaseClient dbClient = Eucalypt.dbManager.GetClient())
                                        {
                                            dbClient.runQuery("UPDATE users SET dead = '0' WHERE name = '" + User._Username + "'");
                                        }
    
                                        Room.sendSaying(roomUser, "*discharge " + User._Username + " from hospital*");
    
                                        User.refreshAppearance(true, true, true);
                                        User.deadLooper.Abort();
                                        User.deadLooper = null;
                                    }
                                }
                                break;
                            }
                        #endregion
    Well what i think about this is that..
    Well this should be a Admin Command only
    And If you Agree take out all the Job Corp Shit x]

  10. #265
    Proficient Member mango2735 is offline
    MemberRank
    Jun 2010 Join Date
    176Posts

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    yea ur right i was rushing i was playing call of duty 3 atm

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

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    Look Use Rastalulz Edit Its Full RP Thank You.

    Any Command Requests

  12. #267
    Account Upgraded | Title Enabled! No0b is offline
    MemberRank
    Jul 2010 Join Date
    Michigan, USLocation
    1,426Posts

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    This is nice

  13. #268
    Member diegoharsh is offline
    MemberRank
    Mar 2010 Join Date
    63Posts

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    Code a :sex x Command or :kiss x or a :givitem For Bubble Juice

    ALL FOR RASTA'S EMU

  14. #269
    Banned PEjump2 is offline
    BannedRank
    Jan 2010 Join Date
    The NetherlandsLocation
    2,838Posts

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    Quote Originally Posted by Habboretromaker View Post
    Becuase its set as private try changing to public Worked for me
    Ok how?, im a noob at C# :P

  15. #270
    Account Upgraded | Title Enabled! tycob is offline
    MemberRank
    Nov 2009 Join Date
    Installation 04Location
    263Posts

    Re: [SERVICE] Custom Commands Database - Request/Post Here

    :war
    My own Server(private.Havent yet released until i fully make it)
    Furniture start to move and explosion will appear

    Please help me make this too.I know they already exist.But i want to use them.

    :dog <name>
    Makes other <name> act like dogs(can control them for 20 seconds)

    Please help me make them.



Advertisement