SA-MP Forums Archive
[Ajuda] Tem como ponhar tempo no comando. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Tem como ponhar tempo no comando. (/showthread.php?tid=440225)



Tem como ponhar tempo no comando. - Cromado - 28.05.2013

Olб galera eu queria saber se vocкs me ajuda a ponhar tempo aqui no meu comando de /punir eu ja tenho o local de onde ele vai ser preso e etc.... mais nгo sei como ponha tempo.... Exemplo o admin Cromado prendeu o jogador fulano tempo 10 Minutos pelo motivo( Teste)..
assim que eu queria dou """"" REP """""""" pra qm ajudar

pawn Код:
if(strcmp(cmd, "/punir", true) == 0) {
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(pAdmin[playerid] == 1 || pAdmin[playerid] == 2 || pAdmin[playerid] == 3 || pAdmin[playerid] == 4 || pAdmin[playerid] == 5){
new tmp[256];
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, Vermelho, "Digite: /punir [id] [Tempo] [motivo]");
return 1;
}
plid = strval(tmp);
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(file2, sizeof(file2), PASTA_CONTAS, pname);
if(IsPlayerConnected(plid)){
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' ')) {
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1))) {
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
format(string, sizeof(string), "{00FF00}| INFO | O administrador %s puniu o jogador %s TEMPO : %d(Motivo: %s)", aname,pname,result,aviso[plid]);
SendClientMessageToAll(tcadm, string);
}
}else{
format(string, sizeof(string), " (ERRO) ID %d invбlido!", plid);
SendClientMessage(playerid, Vermelho, string);
}
}
return 1;
}



Re: Tem como ponhar tempo no comando. - davi54723 - 28.05.2013

pawn Код:
new Year,Month,Day,Hour,Min,Sec,pName[MAX_PLAYER_NAME],string[256];
         getdate(Year,Month,Day);
         gettime(Hour,Min,Sec);
         format(string,256,"%s[ID:%d] Foi Kikado - %d/%d/%d at %d:%d em %d segundos",pName,i,Day,Month,Year,Hour,Min,Sec);



Re: Tem como ponhar tempo no comando. - Cromado - 29.05.2013

Meu querido eu quero em tempo Sу em minutos nгo em dia kkk


Re: Tem como ponhar tempo no comando. - davi54723 - 29.05.2013

HDSAUHDSAU'

Код:
new Hour,Min,Sec;
gettime(Hour,Min,Sec);
         format(string,256,"Lalala kikado tal horas: %s tal minuto: %s tal segundo %s", Hour,Min,Sec);
Algo mais? ... '-'


Re: Tem como ponhar tempo no comando. - Cromado - 29.05.2013

lol eu so queria que ele fosse preso por minutos so minutos dai eu posso por quantos "" minutos "" eu quiser pra ele ir preso


Re: Tem como ponhar tempo no comando. - Cromado - 29.05.2013

Eu ponhei no comando /punir 0 10 teste nгo aparece cromado prendeu o jogador tal tal tal tal tal.... n aparece nada '-'

Ta certo isso?
pawn Код:
if(strcmp(cmd, "/punir", true) == 0) {
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(pAdmin[playerid] == 1 || pAdmin[playerid] == 2 || pAdmin[playerid] == 3 || pAdmin[playerid] == 4 || pAdmin[playerid] == 5){
new tmp[256];
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, Vermelho, "Digite: /punir [id] [Tempo] [motivo]");
return 1;
}
plid = strval(tmp);
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(file2, sizeof(file2), PASTA_CONTAS, pname);
if(IsPlayerConnected(plid)){
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' ')) {
idx++;
}
new Hour,Min,Sec;
gettime(Hour,Min,Sec);
format(string,256,"Lalala kikado tal horas: %s tal minuto: %s tal segundo %s", Hour,Min,Sec);
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1))) {
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
format(string, sizeof(string), "{00FF00}| INFO | O administrador %s puniu o jogador %s TEMPO : %d(Motivo: %s)", aname,pname,result,aviso[plid]);
SendClientMessageToAll(tcadm, string);
}
}else{
format(string, sizeof(string), " (ERRO) ID %d invбlido!", plid);
SendClientMessage(playerid, Vermelho, string);
}
}
return 1;
}



Re: Tem como ponhar tempo no comando. - davi54723 - 29.05.2013

O Exemplo que eu dei era pra por acaso vocк kikar ele, mostra-se o tempo.

Como й um comando para colocar o playe preso apenas adicione um SendClientMessage Informando que tal player foi posto preso por tal tempo '-'


Re: Tem como ponhar tempo no comando. - focaximubh - 29.05.2013

pawn Код:
if(strcmp(cmd, "/punir", true) == 0) {
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(pAdmin[playerid] == 1 || pAdmin[playerid] == 2 || pAdmin[playerid] == 3 || pAdmin[playerid] == 4 || pAdmin[playerid] == 5){
new tmp[256];
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, Vermelho, "Digite: /punir [id] [Tempo] [motivo]");
return 1;
}
plid = strval(tmp);
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(file2, sizeof(file2), PASTA_CONTAS, pname);
if(IsPlayerConnected(plid)){
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' ')) {
idx++;
}
new Hour,Min,Sec;
gettime(Hour,Min,Sec);
format(string,256,"Lalala kikado tal horas: %s tal minuto: %s tal segundo %s", Hour,Min,Sec);
SendClientMessageToAll(playerid, Vermelho, string);//AXO QUE Й ISSO '-'
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1))) {
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
format(string, sizeof(string), "{00FF00}| INFO | O administrador %s puniu o jogador %s TEMPO : %d(Motivo: %s)", aname,pname,result,aviso[plid]);
SendClientMessageToAll(tcadm, string);
}
}else{
format(string, sizeof(string), " (ERRO) ID %d invбlido!", plid);
SendClientMessage(playerid, Vermelho, string);
}
}
return 1;
}
Creio que seja isso ae


Re: Tem como ponhar tempo no comando. - Cromado - 29.05.2013

ta aparecendo a mensagem mais nгo estб sendo preso por tempo so vai para o interior

pawn Код:
if(strcmp(cmd, "/punirr", true) == 0) {
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(pAdmin[playerid] == 1 || pAdmin[playerid] == 2 || pAdmin[playerid] == 3 || pAdmin[playerid] == 4 || pAdmin[playerid] == 5){
new tmp[256];
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, Vermelho, "Digite: /punir [id] [Tempo] [motivo]");
return 1;
}
plid = strval(tmp);
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(file2, sizeof(file2), PASTA_CONTAS, pname);
if(IsPlayerConnected(plid)){
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' ')) {
idx++;
}
new Hour,Min,Sec;
gettime(Hour,Min,Sec);
SetPlayerPos ( playerid, 263.8820,77.4002,1001.0391 ) ;
        SetPlayerInterior ( playerid, 6 ) ;
format(string,256,"Lalala kikado tal horas: %s tal minuto: %s tal segundo %s", Hour,Min,Sec);
SendClientMessageToAll(tcadm, string);//AXO QUE Й ISSO '-'
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1))) {
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
format(string, sizeof(string), "{00FF00}| INFO | O administrador %s puniu o jogador %s TEMPO : %d(Motivo: %s)", aname,pname,result,aviso[plid]);
}
}else{
format(string, sizeof(string), " (ERRO) ID %d invбlido!", plid);
SendClientMessage(playerid, Vermelho, string);
}
}
return 1;
}



Re: Tem como ponhar tempo no comando. - focaximubh - 29.05.2013

Quote:
Originally Posted by Cromado
Посмотреть сообщение
ta aparecendo a mensagem mais nгo estб sendo preso por tempo so vai para o interior

pawn Код:
if(strcmp(cmd, "/punirr", true) == 0) {
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(pAdmin[playerid] == 1 || pAdmin[playerid] == 2 || pAdmin[playerid] == 3 || pAdmin[playerid] == 4 || pAdmin[playerid] == 5){
new tmp[256];
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, Vermelho, "Digite: /punir [id] [Tempo] [motivo]");
return 1;
}
plid = strval(tmp);
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(file2, sizeof(file2), PASTA_CONTAS, pname);
if(IsPlayerConnected(plid)){
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' ')) {
idx++;
}
new Hour,Min,Sec;
gettime(Hour,Min,Sec);
SetPlayerPos ( playerid, 263.8820,77.4002,1001.0391 ) ;
        SetPlayerInterior ( playerid, 6 ) ;
format(string,256,"Lalala kikado tal horas: %s tal minuto: %s tal segundo %s", Hour,Min,Sec);
SendClientMessageToAll(tcadm, string);//AXO QUE Й ISSO '-'
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1))) {
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
format(string, sizeof(string), "{00FF00}| INFO | O administrador %s puniu o jogador %s TEMPO : %d(Motivo: %s)", aname,pname,result,aviso[plid]);
}
}else{
format(string, sizeof(string), " (ERRO) ID %d invбlido!", plid);
SendClientMessage(playerid, Vermelho, string);
}
}
return 1;
}
Tu primeiro pede o tempo dps pede a msg '-'
tu quer por tipo assim: /punir [ID] [TEMPO] certo?