All pastes #1375101 Raw Edit

Recording Studio Interior by Cro

public c v1 · immutable
#1375101 ·published 2009-03-28 20:42 UTC
rendered paste body
/*|******************************************************************************|?==============================================================================?_____________________________________________________________________________________________________________Recording studio_________________________________________________________________  INTERIOR  ____________________________________________________________________????????????______________________________________________________________________________________________________________________    Copyright by CroAtTheTop	All Rights reserved	2Oo9	version 0.1?==============================================================================?|******************************************************************************||****************^(o)(_.?`?`._)^(o)**********************|________________________________________________________________________________*/#include <a_samp>#define COLOR_ERROR 0xD2691EAApublic OnFilterScriptInit(){	print("\n--------------------------------------");	print("**Recording Studio interior by CroAtTheTop**");	print("--------------------------------------\n");/////////////Recording studio objects/////////////    CreateObject(14393, 1962.903442, -2015.115356, 5.116333, 0, 0, 0); // object (3)	CreateObject(14391, 1964.395752, -2016.115601, 3.824312, 0, 0, 0); // object (5)	CreateObject(2834, 1959.968384, -2016.227661, 2.888801, 0, 0, 0); // object (8)	CreateObject(2815, 1970.596436, -2014.929565, 2.888801, 0, 0, -89.3813588468); // object (10)	CreateObject(2344, 1967.878540, -2016.094604, 3.892037, 0, 0, 0); // object (12)	CreateObject(2104, 1965.695557, -2010.736572, 2.879236, 0, 0, 0); // object (14)	CreateObject(2006, 1962.306274, -2015.606079, 4.104571, 0, 0, 90.240910132); // object (17)	CreateObject(1828, 1960.746460, -2015.762817, 2.861946, 0, 0, 0); // object (18)	CreateObject(1808, 1964.573364, -2010.975952, 2.876801, 0, 0, 0); // object (19)	CreateObject(14527, 1968.137573, -2016.354736, 3.914381, 0, 0, 0); // object (21)	CreateObject(14392, 1962.862061, -2015.170898, 4.132399, 0, 0, -0.859436693678); // object (23)	CreateObject(1566, 1971.681274, -2013.943848, 4.397369, 0, 0, -90.2408528362); // object (14)	CreateObject(1566, 1971.697021, -2017.090332, 4.404638, 0, 0, -269.863007223); // object (15)	CreateObject(1651, 1962.836060, -2017.238770, 5.128598, 0, 0, -181.341199662); // object (16)	CreateObject(1651, 1962.891235, -2014.421509, 5.128598, 0, 0, -181.341199662); // object (17)	CreateObject(2509, 1963.250366, -2010.800049, 3.831111, 0, 0, 0); // object (18)	CreateObject(2292, 1970.686890, -2018.953735, 2.880514, 0, 0, -179.622268979); // object (21)	CreateObject(2291, 1970.253906, -2018.953247, 2.880514, 0, 0, -180.481820264); // object (22)	CreateObject(2292, 1968.904297, -2018.960693, 2.880514, 0, 0, 90.2408528362); // object (23)	CreateObject(2291, 1968.866699, -2018.487305, 2.887783, 0, 0, 90.2408528362); // object (24)	CreateObject(2292, 1968.840942, -2017.122192, 2.880514, 0, 0, 0); // object (25)	CreateObject(2235, 1970.119019, -2017.967651, 2.881414, 0, 0, 0); // object (26)	return 1;}public OnFilterScriptExit(){	return 1;}public OnPlayerCommandText(playerid, cmdtext[]){	if(strcmp(cmdtext, "/Recordstud", true) == 0) {	{	    SetPlayerPos(playerid,1970.750366, -2015.413818, 2.884070);	    new name[MAX_PLAYER_NAME],string[128];	    GetPlayerName(playerid,name,sizeof(name));	    format(string,sizeof(string),"*** %s has teleported to the RecordingStudio. **(/Recordstud)**",name);	    SendClientMessage(playerid,COLOR_ERROR,string);	    return 1;	    }	}	return 0;}