Help with Format/String
#1

Hi , i create this One (to punish players who disconnect if they are Cuffed):
PHP код:
public OnPlayerDisconnect(playeridreason)
{
if(
PlayerCuffed[playerid] == 2)
{
SafeGivePlayerMoney(playerid, -4500);
PlayerInfo[playerid][pJailed] = 2
PlayerInfo[playerid][pJailTime] = 60*60;
SetPlayerInterior(playerid6);
PlayerInfo[playerid][pInt] = 6;
SetPlayerPos(playerid264.6288,77.5742,1001.0391);
SetPlayerWorldBounds(playerid264.6288,77.5742,1001.0391,1798.7453);

so , i want to get the Name of the player who has been kicked and say:
%s cuffed and Disconnect, 60Min Jail and -4500$ (i want someone helping me to create it )

i used Format but i get Erros for Undefinned symbole String,
So , if anyone can Create it for me should be better Thanks.
Reply
#2

I posted some help on that old topic of yours. go look for it. btw all you need to do is:

pawn Код:
new Name[MAX_PLAYER_NAME];
GetPlayerName(playerid,Name,sizeof(Name));
new String[200];
format(String, sizeof(String), "%s() Disconnected while Cuffed!,Punishments: 60Min Jail and -4500$",Name,playerid);
Reply
#3

it will be like this ?
PHP код:
public OnPlayerDisconnect(playeridreason)
{
new 
Name[MAX_PLAYER_NAME];
GetPlayerName(playerid,Name,sizeof(Name));
new 
String[200];
if(
PlayerCuffed[playerid] == 2)
{
SafeGivePlayerMoney(playerid, -4500);
PlayerInfo[playerid][pJailed] = 2
PlayerInfo[playerid][pJailTime] = 60*60;
SetPlayerInterior(playerid6);
PlayerInfo[playerid][pInt] = 6;
SetPlayerPos(playerid264.6288,77.5742,1001.0391);
SetPlayerWorldBounds(playerid264.6288,77.5742,1001.0391,1798.7453);
format(Stringsizeof(String), "%s() Disconnected while Cuffed!,Punishments: 60Min Jail and -4500$",Name,playerid);

Reply
#4

you formated it but dont send it
use this under format:
SendClientMessageToAll(color,String);

replace color with your color or given error
Reply
#5

thanks but i'm using
Код:
BroadCast(COLOR_RED,string);
is better
Reply
#6

np did it work now ?
Reply
#7

Fixed+ Working thanks all
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)