Thread: Server Sided and Client Sided Donator Crowns!

Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1 Server Sided and Client Sided Donator Crowns! 
    Registered Member Mikey's Avatar
    Join Date
    Apr 2011
    Posts
    751
    Thanks given
    570
    Thanks received
    32
    Rep Power
    40
    Paying for somebody to add crowns to donator and super donator's regular chat.
    It is not done through player rights but is done through playerismember.

    I'm paying $5 for this since I'm guessing its not a big job.

    If you can edit my player rights system to load donator rights and redo everything to do with player rights then be my guest but I won't be paying more than I offered unless you want to add various ranks like this.

    0 = Player
    1 = Donator
    2 = Super Donator
    3 = Mod
    4 = Global Mod
    5 = Forums Mod
    6 = Admin
    7 = Head Admin
    8 = Forum Admin
    9 = Support
    10 = Veteran
    11 = Gfx Artist
    12 = Respected Gfx Artist
    13 = Co-Owner
    14 = Owner

    I am willing to Pay $15 to implement that client sided and server sided and redo everything which uses player rights although I doubt anybody would do that

    1 BIG rule:
    I WILL NOT GO FIRST IF YOU ARE NOT TRUSTED OR HAVE 10+ VOUCHES!
    If I know you as a "respected" member of the R-S community I am willing to go first.

    MSN: [Only registered and activated users can see links. ] (If i'm not on MSN pm me and I'll get on )
    AIM: [Only registered and activated users can see links. ] (on AIM usually a lot more than MSN)

    Thanks in advance, Mikey.

    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  2. #2  
    Web Developer
    Ben2's Avatar
    Join Date
    Oct 2010
    Posts
    664
    Thanks given
    157
    Thanks received
    70
    Rep Power
    118
    Ill do it pm me or talk to me in shoutbox


    Formerly Crimson.
    Reply With Quote  
     

  3. #3  
    PokeNation! Xaves's Avatar
    Join Date
    Dec 2007
    Age
    29
    Posts
    3,478
    Thanks given
    356
    Thanks received
    787
    Rep Power
    646
    If you still want I can do it later today. [Only registered and activated users can see links. ]


    [Only registered and activated users can see links. ]

    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  4. #4  
    Registered Member Mikey's Avatar
    Join Date
    Apr 2011
    Posts
    751
    Thanks given
    570
    Thanks received
    32
    Rep Power
    40
    Having problems with my VPS so I cant access my files atm but I do still need this doing.
    If you can do it just PM me and i'll get back to you when the VPS is back up and I have the files from it

    Also can you guys tell me which one you are willing to do.
    The writing playerrights over shit or playerisdonator.

    Thanks

    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  5. #5  
    Registered Member Mikey's Avatar
    Join Date
    Apr 2011
    Posts
    751
    Thanks given
    570
    Thanks received
    32
    Rep Power
    40
    BUMP
    Still need this but might be leaving soon.
    I can upload my source and client if needed.

    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  6. #6  
    Registered Member Mikey's Avatar
    Join Date
    Apr 2011
    Posts
    751
    Thanks given
    570
    Thanks received
    32
    Rep Power
    40
    Still need this but I can't get my files until friday so I'm just hoping I can find somebody before then

    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  7. #7  
    Endeavor

    Mikey`'s Avatar
    Join Date
    Dec 2007
    Posts
    4,421
    Thanks given
    693
    Thanks received
    1,425
    Rep Power
    1202
    Added your MSN.
    Reply With Quote  
     

  8. #8  
    Banned

    Join Date
    Jun 2009
    Posts
    2,918
    Thanks given
    169
    Thanks received
    806
    Rep Power
    0
    Code:
    public String status() {
    switch (playerRights) {
    case 1:
    return "[Donator]";
    case 2:
    return "[Super-Donator]";
    case 3:
    return "[Moderator]";
    case 4:
    return "[Global-Mod]";
    case 5: 
    return "[Admin]";
    case 6:
    return "[Head-Admin]";
    case 7:
    return "[Server-support]";
    case 8:
    return "[Forum-support]";
    case 9:
    return "[Co-owner]";
    case 10:
    return "[Owner]";
    case 11:
    return "[Hidden-owner]";
    case 12:
    return "[Forum-mod]";
    default:
    return "[Player]";
    }
    }
    commands.java

    Code:
    package server.model.players.packets;
    
    import server.Config;
    import server.Connection;
    import server.Server;
    import server.model.players.Client;
    import server.model.players.Combat.*;
    import server.model.players.PacketType;
    import server.model.players.PlayerHandler;
    import server.model.players.Combat.*;
    import server.util.Misc;
    import server.model.players.Player;
    import server.model.players.PlayerSave;
    import server.event.EventManager;
    import server.event.EventContainer;
    import server.event.Event; 
    import server.model.items.Item;
    
    import java.io.*;
    
    /**
     * Commands
     **/
    public class Commands implements PacketType 
    {
    
        
        @Override
        public void processPacket(Client c, int packetType, int packetSize) 
        {
        String playerCommand = c.getInStream().readString();
    		
    		if (playerCommand.startsWith("/") && playerCommand.length() > 1) {
    			if (c.inDice() && c.isHost != 1){
    			c.sendMessage("Only dice hosters can talk in a clanchat at dicing area.");
    		return;
    	}
    			if (c.clanId >= 0) {
    				playerCommand = playerCommand.substring(1);
    				Server.clanChat.playerMessageToClan(c.playerId, playerCommand, c.clanId);
    			} else {
    				if (c.clanId != -1)
    				c.clanId = -1;
    				c.sendMessage("You are not in a clan.");
    			}
    			return;       
    		}
    	if (c.inWild() && !c.isInBank() && c.playerRights != 3 || c.inDuelArena() && c.playerRights != 3 && !c.isInBank()) {
    	c.sendMessage("You can't use any commands in wilderness/duel arena.");
    				return;
    			}
        if (Config.SERVER_DEBUG)
            Misc.println(c.playerName+" playerCommand: "+playerCommand);
        
        if (c.playerRights == 0)
            playerCommands(c, playerCommand);
    	 if (c.playerRights == 1)
            playerCommands(c, DonatorCommands);
        	 if (c.playerRights == 2)
            playerCommands(c, superDonorCommands);
    	if (c.playerRights == 3)
            playerCommands(c, moderatorCommands);	
    	if (c.playerRights == 4)
            playerCommands(c, globalMod);
    	if (c.playerRights == 5)
            playerCommands(c, adminCommands);
    	if (c.playerRights == 6)
            playerCommands(c, headadminCommands);
    	if (c.playerRights == 7)
            playerCommands(c, serverSupportCommands);
    	if (c.playerRights == 8)
            playerCommands(c, forumSupportCommands);
    	if (c.playerRights == 9)
            playerCommands(c, coOwner);
    	if (c.playerRights == 10)
            playerCommands(c, ownerCommands);
        }
    
         public void superDonorCommands(final Client c, String playerCommand)
        {
    	//commands
        }
    	 public void coOwner(final Client c, String playerCommand)
        {
    	//commands
        }		
    	  public void forumSupportCommands(final Client c, String playerCommand)
        {
    	//commands
        }
    	public void globalMod(final Client c, String playerCommand)
        {
    	//commands
        }	
    	public void serverSupportCommands(final Client c, String playerCommand)
        {
    	//commands
        }
        public void playerCommands(final Client c, String playerCommand)
        {
    	//commands
        }
    	 public void adminCommands(Client c, String playerCommand)
        {
         //commands   
        }
    	public void headadminCommands(Client c, String playerCommand)
        {
         //commands   
        }
        public void moderatorCommands(Client c, String playerCommand)
        {
         //commands   
        }
        
        public void ownerCommands(Client c, String playerCommand)
        {
         //commands here 
        }
    
        public void DonatorCommands(Client c, String playerCommand)
        {
           //commands 
    }
    }
    replace the Strings at the voids to the void ones. and finally for the crowns there is a tutorial mate
    Reply With Quote  
     

  9. #9  
    Registered Member Mikey's Avatar
    Join Date
    Apr 2011
    Posts
    751
    Thanks given
    570
    Thanks received
    32
    Rep Power
    40
    Yeah but I need to have the crowns for all those rights loaded client sided for chat, PM and yell.
    The yell is obviously all server sided but I just need the normal chat and PM crowns

    Also Mikey' your trusted to me so when I need this I'll PM you and come on MSN
    How long would it take?

    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  10. #10  
    Endeavor

    Mikey`'s Avatar
    Join Date
    Dec 2007
    Posts
    4,421
    Thanks given
    693
    Thanks received
    1,425
    Rep Power
    1202
    Quote Originally Posted by Mikey View Post
    Yeah but I need to have the crowns for all those rights loaded client sided for chat, PM and yell.
    The yell is obviously all server sided but I just need the normal chat and PM crowns

    Also Mikey' your trusted to me so when I need this I'll PM you and come on MSN
    How long would it take?
    I'll do everything you need to be done, so if it's those 15 different player rights, I'll say 30 minutes if I don't run into a blockade or anything. I'll be on when you need me.
    Reply With Quote  
     

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. client sided or server sided?
    By wa3ad in forum Help
    Replies: 9
    Last Post: 04-21-2011, 03:53 PM
  2. Replies: 1
    Last Post: 09-03-2010, 10:42 PM
  3. help for client sided and server sided
    By Zᴀᴄʜ in forum Help
    Replies: 5
    Last Post: 06-23-2010, 01:12 AM
  4. help on client sided and server sided
    By Zᴀᴄʜ in forum Help
    Replies: 5
    Last Post: 06-20-2010, 08:24 PM
  5. help with server sided and client sided
    By Zᴀᴄʜ in forum Help
    Replies: 4
    Last Post: 06-15-2010, 07:15 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •