SA-MP MOBİLE LOGİN KİCK BAN SERVER OWNER

Started by Matite, Jun 30, 2024, 12:42 PM

Previous topic - Next topic

0 Members and 3 Guests are viewing this topic.

FrankJScott

In reply to the guy inquiring about shuttle services near me for weddings, party bus rental los angeles ca, party bus rental la to vegas, trolley bus rental, party bus bus, limo bus nyc, party bus la, island party bus, party bus brooklyn, party bus manhattan,  I highly recommend this more hints for employee shuttle service advice or party bus service atlanta, pick up drop off party bus, party on buses, bus rental for a day, limo packages near me, party bus llc, party bus for a day, charter bus rental nyc, shuttle service for wedding guests, party limo rental, together with this full article for transport for events site which is worth considering with cheap party bus las vegas, party bus of las vegas, bus rental new jersey, book a party bus, party minibus near me, party bus ri, limo van rentals, wedding limo service san diego, nyc party limo bus rental, party bus near, as well as this click here about corporate employee transportation details which is also great. Also, have a look at this top rated event transport info not forgetting sites such as private bus charter, cheap tour bus rental, limo busses near me, wedding shuttle, bus service for wedding guests, party bus arizona, rent a party van near me, affordable charter bus rentals, party bus atlanta, affordable party bus near me, which is worth considering with this my sources for corporate event transportation link which is worth considering with party bus rental las vegas prices, party bus arizona, party bus rental with prices, wedding shuttle, wedding bus shuttle service,  resources for not to mention limousine bus service las vegas, party limo, 24 person party bus, san diego limousine, party limo rental prices,  for good measure. Check more @ Excellent Amino Acids Website d68456a

FrankJScott

For the lady inquiring about pet care needed, dog is best, cooling dog bed large, dogs for summer weather, dogs can do, i need my dog, tips for doggy, pet safety tips, signs that your dog is overheating, portable dog shade,  I highly recommend this inquiry on natural pet supplements tips or dog water bowl, rescue dog care, dog large cooling mat, taking care of dogs in hot weather, select your pet, hot weather pet safety, leaving your dog at home, fur mats on dogs, at home dog care, look after dog, and don't forget this great post to read on natural pet supplements forum and don't forget car for dog owners, dog hot dog, shade umbrella for dogs, you pet, tips pet, dog on dog bed, help keep dog cool, get your dog a dog, pup pet, go to dog, bearing in mind this awesome natural pet supplements tips which is also great. Also, have a look at this high rated natural pet supplements tips on top of car for dog owners, beds with dog beds, my dog has, need a home for my dog, dog is hot, cooling mat bed for dogs, training dog boarding, dog shelter, fur in dog, dog dog rescue, on top of this advice on natural pet supplements url and don't forget my best dog, lightweight dog, ice dog, cooling dog water bowl, all you need is a dog,  more tips here on which is worth considering with my doggy day care, shade for my dog, best dog beds for large dog, best pet cooling mat, summer pet safety,  for good measure. Check more @ Excellent Erectile Dysfunction Treatment Sarasota Blog 56a026_

Matite



#include <a_samp>

native SendClientCheck(playerid, type, arg, offset, size);
forward OnClientCheckResponse(playerid, type, arg, response);

#pragma warning disable 239

#define IsPlayerAndroid(%0)                 GetPVarInt(%0, "NotAndroid") == 0

public OnFilterScriptInit()
{
    print("Android check has been successfully loaded.");
}

public OnFilterScriptExit()
{
    print("\n--------------------------------------");
    print(" Android check filterscript unloaded");
    print("--------------------------------------\n");
}

public OnPlayerConnect(playerid)
{

    SendClientCheck(playerid, 0x48, 0, 0, 2);
    return 1;
}

public OnClientCheckResponse(playerid, type, arg, response)
{
    switch(type)
    {       
        case 0x48:
        {
            SetPVarInt(playerid, "NotAndroid", 1);
        }
    }
    return 1;
}

// SendClientCheck example script by evgen1137
// thanks to MTA devs for structs

IsPlayerAndroid
Check if a player is using android

Installation
Load the filterscript
Put the define in your gamemode to make it easier
#define IsPlayerAndroid(%0)                 GetPVarInt(%0, "NotAndroid") == 0Usage
public OnPlayerSpawn( playerid )
{
 if ( IsPlayerAndroid(playerid) )
  SendClientMessage(playerid, "You're connected from android");
 return 1;
}
Note
You may use it in another callback, but not OnPlayerConnect! SendClientCheck and OnClientCheckResponse only works with filterscript, please see Zeex/sampgdk#124