1
mIRC/pawn Scripting / Re: [PAWNO] Commands and Class selection...
« on: February 10, 2010, 10:58:43 pm »
To be truth there is still much missing in all VC:MP wikis that exists...
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
SendClientMessageToAll(ORANGE,"%s lost in duel", name);
new string[MAX_STRING];
format(string,sizeof(string),"%s lost in duel",name);
SendClientMessageToAll(ORANGE,string)
SendClinetMessageToAll();
has only 2 strings to be set! "color" and "string"
#define GameMode "/mode/GAME/GameMode"
#define GameMode "/mode/GAME/GameMode.ini"
forward IncPlayerDuelWons...
forward IncPlayerDuelLoses
forward DuelWon
forward DuelLos
Remove the forwards...if(PlayerInfo[playerid][Duel] == 1) DuelLos(playerid,1);
stock IncPlayerDuelWons(playerid,Amount)
{
format(file, sizeof(file), USERS_FILE, gPlayers[playerid]);
new duelw; duelw = dini_Int(file, "DuelWons");
dini_IntSet(file, "DuelWons", duelw +Amount);
}
stock IncPlayerDuelLoses(playerid,Amount)
{
format(file, sizeof(file), USERS_FILE, gPlayers[playerid]);
new duell; duell = dini_Int(file, "DuelLoses");
dini_IntSet(file, "DuelLoses", duell +Amount);
}
stock DuelWon(playerid,Amount)
{
format(file, sizeof(file), USERS_FILE, gPlayers[playerid]);
dini_IntSet(file, "Duel", 0);
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
SendClientMessageToAll(ORANGE,"%s won in duel", name);
IncPlayerDuelWons(playerid,1);
SetPlayerPos(playerid, -731.411499,-1526.219848,12.526686,120,0);
}
stock DuelLos(playerid,Amount)
{
format(file, sizeof(file), USERS_FILE, gPlayers[playerid]);
dini_IntSet(file, "Duel", 0);
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
SendClientMessageToAll(ORANGE,"%s lost in duel", name);
IncPlayerDuelLoses(playerid,1);
}