Eh ovako molio bi za pomoc ove koji znaju, treba mi malo vise pomoci :D
1. Kako da ubacim da i admini mogu pisati na /g chat tj na chat gamemastersa
2. Ne znam kako da ubacim komandu /port to mi jako treba
3. Kako da pravim novu org/mafiju
Hvala unaprijed svima...
Kliknes gore na TRAZI i sve nadjes fino
koji Gamemod koristis ili radis od >0<
Ako radis od >0< vecinu ces morat sam napravit,a ako Editas neki imas ovdije najmanje 5-6 TuTova o tome kako napraviti bandu/ORG i port
EDIT:
http://balkan-samp.com/forum/index.php?topic=17682.0 (http://balkan-samp.com/forum/index.php?topic=17682.0) // Banda/ORG za GF GameMod
http://balkan-samp.com/forum/index.php?topic=75.msg82#msg82 (http://balkan-samp.com/forum/index.php?topic=75.msg82#msg82) //Tutorial TELEPORT GF GameMod
Citat: Kalabunga poslato Januar 20, 2011, 16:59:21 POSLE PODNE
Eh ovako molio bi za pomoc ove koji znaju, treba mi malo vise pomoci :D
1. Kako da ubacim da i admini mogu pisati na /g chat tj na chat gamemastersa
2. Ne znam kako da ubacim komandu /port to mi jako treba
3. Kako da pravim novu org/mafiju
Hvala unaprijed svima...
1. Daj nam komandu /g
2. http://balkan-samp.com/forum/index.php?topic=18136.0 (http://balkan-samp.com/forum/index.php?topic=18136.0)
3. http://balkan-samp.com/forum/index.php?topic=17682.0 (http://balkan-samp.com/forum/index.php?topic=17682.0)
Evo komanda /g if(strcmp(cmd, "/gamemasterchat", true) == 0 || strcmp(cmd, "/g", true) == 0)
{
if(IsPlayerConnected(playerid))
{
GetPlayerName(playerid, sendername, sizeof(sendername));
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))
{
SendClientMessage(playerid, COLOR_GRAD2, "USAGE: (/g)chat [gamemaster chat]");
return 1;
}
format(string, sizeof(string), "*%d GameMaster %s: %s", PlayerInfo[playerid][pGmaster], sendername, result);
if (PlayerInfo[playerid][pGmaster] >= 1)
{
GBroadCast(COLOR_YELLOW,string,1);
}
printf("GameMaster %s: %s", sendername, result);
}
return 1;
}