i need some help.. please
#1

someone script for me please

like when players join the server it should see their ip:
ex: Player (0) Joined the Server. Ip: <ip goes here>
and it should only available to admins .

and also im also having trouble with this
idk how to add /info (id) or /i (id) - it should give other players as well as mine info. like their nick, id, location, vehicle they using.

also please help me with this..
when i write /vdes (id) it should destroy the car . you know every car has an id.
this should be only for admins.

when you make it please make it like cmdtext. ex: if (strcmp("/vdes", cmdtext, true, 10) == 0)


please post it here or pm me the script. thanks
Reply
#2

Quote:
Originally Posted by ThamburaaN
Посмотреть сообщение
like when players join the server it should see their ip:
ex: Player (0) Joined the Server. Ip: <ip goes here>
and it should only available to admins .
pawn Код:
// FOR EXAMPLE
if(PlayerInfo[playerid][pAdmin]) // changes the variable, if is other...
{
    new ip[32], name[MAX_PLAYER_NAME];
    GetPlayerIp(playerid, ip, 32);
    GetPlayerName(playerid, name, sizeof(name));
    format(string, sizeof(string), "AdmWarning: %s has logged on with the IP %s", name, ip);
    ABroadCast(COLOR_YELLOW, string, 1); // function that sends messages to a admin.
}
Reply
#3

thanks.
someone please help me with other things too.
Reply
#4

what other things do you need done?
Reply
#5

Quote:
Originally Posted by ThamburaaN
Посмотреть сообщение
...

and also im also having trouble with this
idk how to add /info (id) or /i (id) - it should give other players as well as mine info. like their nick, id, location, vehicle they using.

also please help me with this..
when i write /vdes (id) it should destroy the car . you know every car has an id.
this should be only for admins.

when you make it please make it like cmdtext. ex: if (strcmp("/vdes", cmdtext, true, 10) == 0)


please post it here or pm me the script. thanks
Quote:
Originally Posted by jaydon
Посмотреть сообщение
what other things do you need done?
Read carefully.
Reply
#6

bump
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)