Simple Help Question!
#1

Can someone tell me how can i create like this

The Server Record is %s(10) players! onplayerconnect can someone help me make it
Reply
#2

Take a look how this guy did it:
https://sampforum.blast.hk/showthread.php?tid=156569
Reply
#3

thx i couldent find this )
Reply
#4

public Record(playerid)
{
if(Precord)
{
new string[92];
format(string, sizeof(string), "**Record for online players %d, fixed on %d %s %d, at %d:%d", Precord, Drecord, mname[Mrecord-1], Yrecord, THrecord, TMrecord);
SendClientMessage(playerid, 0xA5D24DFF, string);
}
oplayers++;
if(Precord < oplayers)
{
Precord=oplayers;
gettime(THrecord, TMrecord); getdate(Yrecord, Mrecord, Drecord);
new string[92];
format(string, sizeof(string), "*New record for online players %d, fixed on %d %s %d, at %d:%d", Precord, Drecord, mname[Mrecord-1], Yrecord, THrecord, TMrecord);
SendClientMessageToAll(0xFCB833FF, string);
SaveRecord();
}
return 1;
}

DIFF BETWEEN THIS

PHP код:
format(stringsizeof(string), "*New record for online players %d, fixed on %d %s %d, at %d:%d"PrecordDrecordmname[Mrecord-1], YrecordTHrecordTMrecord); 
AND THIS :

PHP код:
format(stringsizeof(string), "**Record for online players %d, fixed on %d %s %d, at %d:%d"PrecordDrecordmname[Mrecord-1], YrecordTHrecordTMrecord); 
Reply
#5

Quote:
Originally Posted by Akcent_Voltaj
Посмотреть сообщение
Can someone tell me how can i create like this

The Server Record is %s(10) players! onplayerconnect can someone help me make it
https://sampforum.blast.hk/showthread.php?tid=284226
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)