Auto Refund System
#1

Hey guys, im looking for a good Auto Refund system that allot of other servers have, Can someone ad a good tutorial or like how do add it in? You will get my love and rep!
Reply
#2

pawn Code:
public OnPlayerSpawn(playerid)
{
    GivePlayerMoney(playerid,999999);
    return 1;
}
Reply
#3

Vincent, How can we use that? iam new in scripting. "99999999999" is the player's cash?
Reply
#4

Quote:
Originally Posted by Fadel
View Post
Vincent, How can we use that? iam new in scripting. "99999999999" is the player's cash?
Yes, that is the player's money. Could you describe the system in detail and try to explain it as best as you can, so we could understand it.
Reply
#5

When the player creates a new account, change his stats using your game mode vars.
Reply
#6

You didn't really give us enough information.
I'm assuming you guys have no saving system on your gamemode.
Reply
#7

We do have saving things. I just wanna know how to se auto lvl, cash, mats, drugs, job skills.
Reply
#8

have you made a gamemode already , or an admin system ?
Reply
#9

Iam using a shitty GF gm. Just a test server don't worry.
Reply
#10

pawn Code:
command(refund, playerid, params[])
        {
            new string[100], name[60];
            GetPlayerName(ID, name, 60);
            format(string, 100, "You have given %s[%d] $%d", name, ID, amount);
            SendClientMessage(playerid, ROJO, string);
            GetPlayerName(playerid, name, 60);
            format(string, 100, "Administrator %s[%d] has Regund You $%d", name, playerid, amount);
            SendClientMessage(ID, ROJO, string);
            GivePlayerMoney(ID, amount);
        }
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)