Author Topic: Client_FetchPlayers  (Read 1195 times)

Client_FetchPlayers <--Cool it's client

Ever wanted to be able to have your admins in one area,
and your non-admins in another?

Or maybe you just wanted to have everyone in one spot?

Introducing the "Fetch Players" add-on!

1. Download the add-on by clicking the link at the bottom of this post (make sure you download it into your Add-Ons folder

2. Run Blockland and then bind it (Options > Controls > Scroll down at the side)

3. Get on any server, and teleport admins, non-admins, or everyone to where you want!
(Note: You must be an administrator ;c)

Anyways, here are the
Testers

Mexicutionist! (ID: 26926)

Z T Black Assassin (ID: 25695)

Coders

Radiowave (ID:42731)

Download

oh great it's on that laggy mediafire websitehttp://download2037.mediafire.com/9hybc7eh9akg/tomrcaflmp6kckx/Client_FetchPlayers.zipbut wait Radiowave saved us some time to directly download it :)

-For those of you who think that this add-on has probably already been made, you're most likely thinking of the Client_FetchAll add-on which only has one option to fetch everybody :P Or maybe you're thinking of the server-sided add-on that fetches admins only... (So if there is an add-on exactly like this, I apologize and I'm sorry that I didn't find it)

-If you think this is pointless, go talk to someone who understands how useful this can be.

Thank you everyone, and Merry XMas!

Well I can certainly see uses for this.


interesting, thanks for this

for anyone like me who doesn't want everyone being massively fetched to one person
Code: [Select]
package swol_preventMassFetching
{
   function serverCmdFetch(%cl,%t)
   {
        if(getSimTime()-%cl.lastFetchTime < 250)
        return;

        %cl.lastFetchTime = getSimTime();
        parent::serverCmdFetch(%cl,%t);
   }
};
ActivatePackage(swol_preventMassFetching);