Jump to content
  • 0

Question

Posted

pe RSS daka scri /xmas icepe sa ninga si iti da o caciula pe cap caciula nu e problema dar imi poti sa imi spuneti cum fac sa ninga sau unde gasesc acel fs

P.S mia mai dat cineva ceva semanator da imi dedea error dak mil dati daimil deja .amx pliz :D

<a href="http://www.game-state.eu/188.212.105.161:7777/"><img src="http://www.game-state.eu/188.212.105.161:7777/430x73_FFFFFF_FF9900_000000_000000.png" alt="www.Game-State.eu" style="border-style: none;" /></a>

2 answers to this question

Recommended Posts

Posted

Poftim nu am stat sa il fac mai complicat mi-a fost lene xD

Dar tot trebuie sa primiti warn toti care cereti scripturi .

#include <	a_samp	>

#include <	zcmd	>

new	SnowOn = 0;

public OnFilterScriptInit()
{
	print("\n--------------------------------------");
	print(" Blank Filterscript by your name here");
	print("--------------------------------------\n");
    if(SnowOn == 0)
	{
		for(new i=0; i<MAX_PLAYERS; i++)
		{
			RemovePlayerAttachedObject(i, 3);
		}
	}
	return 1;
}

public OnPlayerSpawn(playerid)
{
    if(SnowOn == 1)
	{
		SetPlayerAttachedObject(playerid, 3, 18863, 1, 14.877702, -3.078147, 19.289804, 213.993621, 36.619785, 334.528167 ); // SnowArc1 - 8167
	}
	return 1;
}



CMD:snowon(playerid,params[])
{
	if( SnowOn == 0 )
	{
		for( new i=0; i<MAX_PLAYERS; i++ )
		{
			SetPlayerAttachedObject( i, 3, 18863, 1, 14.877702, -3.078147, 19.289804, 213.993621, 36.619785, 334.528167 ); // SnowArc1 - 8167
		}
	}
	return SetWeather( 9 ) , SnowOn = 1;
}
//==============================================================================
CMD:snowoff(playerid,params[])
{
	if( SnowOn == 1 )
	{
		for( new i=0; i<MAX_PLAYERS; i++ )
		{
			RemovePlayerAttachedObject( i, 3 );
		}

    }
	return SetWeather( 14 ) , SnowOn = 0;
}

I'm back bitches.

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.