[FilterScript] Sistema de Salario by Jean
#1

Sistema de Salario by Jean
Ola pessoal, sou um scripter intermediario novo e hoje vim mostrar meu primeiro trabalho.
Muitos gamemodes RPG estavam necessitando de um sistema de salario simples, pois os originais estavam com problema ou por que queriam reimplantar um novo sistema, entгo decidi criar o meu.
Ele й um sistema simples que usa SetTimer.
Informaзхes:
Da o salario a cada 10 minutos (se nгo quiser sу arrumar)
Bom entгo faзam o download, comentem e postem qualquer bug que eu arrumo.
Caso goste de Reputaзгo, nгo custa nada!!
Obrigado!
Download:
http://solidfiles.com/d/46c4/
Reply
#2

Seu Sistema pode ser bem util parabens
Reply
#3

pawn Код:
OnGameModeInit()
{
    SetTimer("pagamento", MINUTOS * 60000, true);
    return true;
}

public OnFilterScriptInit()
{
    SendClientMessageToAll(playerid,0xFFFFFFFF,"Sistema de Salario feito por Jean");
    return 1;
}
kkkkkkk'
Reply
#4

Quote:
Originally Posted by PlueX
Посмотреть сообщение
pawn Код:
OnGameModeInit()
{
    SetTimer("pagamento", MINUTOS * 60000, true);
    return true;
}

public OnFilterScriptInit()
{
    SendClientMessageToAll(playerid,0xFFFFFFFF,"Sistema de Salario feito por Jean");
    return 1;
}
kkkkkkk'
Reply
#5

Obrigado
Reply
#6

Dr_Pawno aprenda a ler a descriзгo, la diz que й um SISTEMA SIMPLES!
Reply
#7

Quote:
Originally Posted by jeanmon357
Посмотреть сообщение
Muitos gamemodes RPG estavam necessitando de um sistema de salario simples, pois os originais estavam com problema ou por que queriam reimplantar um novo sistema, entгo decidi criar o meu.
Os PayDays de RolePlay/RPG nгo tem Problemas. PayDays sгo feitos as Horas Exatas para que ao Receber o PayDay o jogador nгo vб para outro servidor receber outro PayDay. (Impedir de Jogar 2 Servidores (Ou +))

Leia este Link.

@Edit:

Use PasteBin em vez de FileServe/RapidShare/4Shared...
Reply
#8

pawn Код:
OnGameModeInit()
{
SetTimer("pagamento", MINUTOS * 60000, true);
return true;
}
pagamento();
public pagamento()
{
for(new i = 0; i != MAX_PLAYERS; ++i)
if(IsPlayerConnected(i))
{
GivePlayerMoney(i, VALOR);
}
return SendClientMessageToAll(-1, "Hora do Pagamento");
}
¬¬'
Reply
#9

Denso. u.u
Reply
#10

Quote:
Originally Posted by Dr_Pawno
Посмотреть сообщение
Quote:
Originally Posted by Los
Посмотреть сообщение
pawn Код:
OnGameModeInit()
{
SetTimer("pagamento", MINUTOS * 60000, true);
return true;
}
pagamento();
public pagamento()
{
for(new i = 0; i != MAX_PLAYERS; ++i)
if(IsPlayerConnected(i))
{
GivePlayerMoney(i, VALOR);
}
return SendClientMessageToAll(-1, "Hora do Pagamento");
}
¬¬'
Quote:
Originally Posted by Viniborn
Посмотреть сообщение
Denso. u.u
;o OMFG !
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)