Thread: [PI] Paying $ for snippits and how to's

Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1 [PI] Paying $ for snippits and how to's 
    Member [PI] Paying $ for snippits and how to's Market Banned
    Crispytoast's Avatar
    Join Date
    Nov 2010
    Posts
    448
    Thanks given
    19
    Thanks received
    42
    Rep Power
    17
    Heres a chance to make a small amount of money, i need the following snippits/howto's for PI source and i will be paying 1usd for each snippit. You may do as many as you would like. If you copy these from your PI server, that is fine, but make sure they work please.

    • ::kick command
    • method for making admin/coowners not lose ANY items on death
    • add firecape drop to tok-jad on death in fightcaves
    • making claws work on players and not just NPC's (Contact me on msn for this one, im paying 5usd for this one)
    • How to finalize the integration for vbulletin and a PI source, i've gotten no errors on compiling but my run.bat stops at "Launching project insanity..."
    • More to be added, keep checking back!
    • How to add a name exeption in a command, so like ::ban DOESNT work on "Crispytoast", etc.



    My msn: [email protected]


    If you're a trusted member i am willing to go first. My current paypal balance is 35usd.
    Reply With Quote  
     

  2. #2  
    Officially Retired


    Join Date
    Oct 2007
    Age
    30
    Posts
    5,454
    Thanks given
    558
    Thanks received
    122
    Rep Power
    1364
    Add me [email protected]

    * ::kick command - $1
    * method for making admin/coowners not lose ANY items on death - $1
    * add firecape drop to tok-jad on death in fightcaves -$ 2
    * making claws work on players and not just NPC's - $10 my method work on player and npc.
    Reply With Quote  
     

  3. #3  
    Member [PI] Paying $ for snippits and how to's Market Banned
    Crispytoast's Avatar
    Join Date
    Nov 2010
    Posts
    448
    Thanks given
    19
    Thanks received
    42
    Rep Power
    17
    added...get on?
    Reply With Quote  
     

  4. #4  
    Banned
    Join Date
    Jul 2010
    Posts
    3
    Thanks given
    29
    Thanks received
    15
    Rep Power
    0
    Add my mate : [email protected] he is very good.
    Reply With Quote  
     

  5. #5  
    Member [PI] Paying $ for snippits and how to's Market Banned
    Crispytoast's Avatar
    Join Date
    Nov 2010
    Posts
    448
    Thanks given
    19
    Thanks received
    42
    Rep Power
    17
    Added. Still waiting for someone to get on...Feel free to post solutions here and your paypal email
    Reply With Quote  
     

  6. #6  
    Registered Member
    Join Date
    Jun 2010
    Posts
    38
    Thanks given
    0
    Thanks received
    2
    Rep Power
    1
    Do you still need help with everything listed?
    Reply With Quote  
     

  7. #7  
    Registered Member
    Join Date
    Dec 2010
    Posts
    536
    Thanks given
    61
    Thanks received
    25
    Rep Power
    4
    Code:
    if (playerCommand.startsWith("kick") && c.playerRights >= 1) {
    try {
    String playerToBan = playerCommand.substring(5);
    for(int i = 0; i < Config.MAX_PLAYERS; i++) {
    if(Server.playerHandler.players[i] != null) {
    if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToBan)) {
    Server.playerHandler.players[i].disconnected = true;
    Client c2 = (Client)Server.playerHandler.players[i];
    c.sendMessage("You have successfully kicked "+c2.playerName+".");
    }
    }
    }
    } catch(Exception e) {
    c.sendMessage("Player Must Be Offline.");
    }
    Found it in this section.
    Reply With Quote  
     

  8. #8  
    Member [PI] Paying $ for snippits and how to's Market Banned
    Crispytoast's Avatar
    Join Date
    Nov 2010
    Posts
    448
    Thanks given
    19
    Thanks received
    42
    Rep Power
    17
    Quote Originally Posted by Say Wut? View Post
    Code:
    if (playerCommand.startsWith("kick") && c.playerRights >= 1) {
    try {
    String playerToBan = playerCommand.substring(5);
    for(int i = 0; i < Config.MAX_PLAYERS; i++) {
    if(Server.playerHandler.players[i] != null) {
    if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToBan)) {
    Server.playerHandler.players[i].disconnected = true;
    Client c2 = (Client)Server.playerHandler.players[i];
    c.sendMessage("You have successfully kicked "+c2.playerName+".");
    }
    }
    }
    } catch(Exception e) {
    c.sendMessage("Player Must Be Offline.");
    }
    Found it in this section.
    Thanks! Worked, whats your paypal?
    Reply With Quote  
     

  9. #9  
    Registered Member Santi Cazorla's Avatar
    Join Date
    Aug 2009
    Posts
    1,137
    Thanks given
    258
    Thanks received
    55
    Rep Power
    7
    for admin + to keep items upon death

    go to playerassistant..
    find "givelife"

    under
    Code:
    if(c.duelStatus <= 4 && !c.getPA().inPitsWait()) { // if we are not in a duel we must be in wildy so remove items
    there should be a line looking like this :
    Code:
    if (!c.inPits && !c.inFightCaves()) {
    replace that with :
    Code:
    if (!c.inPits && c.playerRights != 2 && c.playerRights != 3 && !c.inFightCaves()) {
    Reply With Quote  
     

  10. #10  
    Registered Member
    Join Date
    Feb 2009
    Posts
    146
    Thanks given
    4
    Thanks received
    14
    Rep Power
    43
    Why would you pay for this ? Those are simple lines of code you could get free anyway, just ask...
    "Five days shalt thou labour, as the Bible says. The seventh day is the Lord thy God's. The sixth day is for football"
    -Anthony Burgess


    Quote Originally Posted by Seventy Five View Post
    omfg wtf man i wanted to play battlescape! how we gonna play battlescape if he ded! man wtf can his mom turn it on for us or somethin?
    Reply With Quote  
     

  11. Thankful user:


Page 1 of 2 12 LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. [Paying] long term excellent coder for PI base [paying]
    By AnonymousUser in forum Requests
    Replies: 6
    Last Post: 09-11-2010, 08:08 AM
  2. Replies: 7
    Last Post: 09-08-2010, 01:35 PM
  3. [paying]Delta combat/special attack delay[/paying]
    By yo its tyty1 in forum Requests
    Replies: 1
    Last Post: 08-20-2010, 06:20 PM
  4. Replies: 0
    Last Post: 08-19-2010, 04:06 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •