Jump to content
  • 0

care ma ajuta si pe mn la ceva :d


damarius

Question

as vrea si eu sa  fac pe sv meu sa zic sa scrie pe chat acolo" bagati ip la favorit sau"' nu uitati sa vizitati site nostru".Daca sunteti generosi sa ma ajutati.Si jos sub ecran cand intri pe server sa scrie ceva de genu /teles /rules /ajutor si sa se skimbe din 3 in 3 min..Si la mode la sv sa se skimbe numele la mode ceva de genu sa se skimbe din 3 in 3 sec numele.Sper sa ma ajutati.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

Cu schimbatului modului

La OnGameModeInit pune

SetTimer("GameModeText",3000,1);
Jos in GameMode adauga:
forward GameModeText();
public GameModeText()
{
	new rand=random(7);
	switch(rand)
	{
		case 0:SendRconCommand("gamemodetext Stunt");
		case 1:SendRconCommand("gamemodetext Drift");
		case 2:SendRconCommand("gamemodetext Race");
		case 3:SendRconCommand("gamemodetext DeathMatch");
		case 4:SendRconCommand("gamemodetext Parkour");
		case 5:SendRconCommand("gamemodetext Fun");
		case 6:SendRconCommand("gamemodetext Freeroam");
	}
	return 1;
} 

Link to comment
Share on other sites

SonGoKu, nu te mai baga aiurea in seama. Ce a zis el si ce raspuns ai dat tu. :-j

damarius,

Adauga asta pe la inceputul scriptului:

#define COLOR_SERVERBOT         0x6699FFAA
Iar astea pe unde dupa ce am scris mai sus:
//=====================ServerBot================================================
new TipRandMessages[][] =
{
    "Text1 aici",
    "Text2 aici",
    "Text3 aici.",
    "ultimu text aici"
};
Ai grija ca dupa ultimu text nu mai pui virgula aia. Asta pe unde vrei tu. E bine si asa, in ordinea asta
forward TipMessages();
public TipMessages()
{
    SendClientMessageToAll(COLOR_SERVERBOT, TipRandMessages[random(sizeof(TipRandMessages))]);
    return 1;
}
Acum cauta OnGameModeInit() sau OnFilterScriptInit()  (depinde in ce bagi) si adauga asta:
SetTimer("TipMessages",100000,1);

logo.png

ATENTIE!!! Nu imi trimiteti mesaje private care au legatura cu scriptingul. NU mai scriptez.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.