21.11.2011, 14:44
Hola gente, les dejo Este FS Que lo hice con un amigo. Estabamos boludeando con zamaroth td editor y se nos ocurrio esto. A mi me gusto, nunca lo habia visto en un server o aca, si esta aca pido MIL DISCULPAS, pero bueno, disfruten...
Que hace Este FS?
Simple, pones /gafas y te agrega unas gafas y un td que hace la pantalla mas oscura, para darle la sensacion que usan gafas
Fotos:
Fs:
Se les recomienda aсadir a su GM, para que no bugeen nada. Saludos...
Que hace Este FS?
Simple, pones /gafas y te agrega unas gafas y un td que hace la pantalla mas oscura, para darle la sensacion que usan gafas
Fotos:
Fs:
pawn Код:
#include <a_samp>
new Showing[MAX_PLAYERS];
new Text:Textdraw0;
new Text:Textdraw1;
public OnFilterScriptInit()
{
// Create the textdraws:
Textdraw0 = TextDrawCreate(710.000000, -60.000000, "~n~");
TextDrawBackgroundColor(Textdraw0, 255);
TextDrawFont(Textdraw0, 1);
TextDrawLetterSize(Textdraw0, 2.709999, 57.499977);
TextDrawColor(Textdraw0, -1);
TextDrawSetOutline(Textdraw0, 0);
TextDrawSetProportional(Textdraw0, 1);
TextDrawSetShadow(Textdraw0, 1);
TextDrawUseBox(Textdraw0, 1);
TextDrawBoxColor(Textdraw0, 136);
TextDrawTextSize(Textdraw0, -52.000000, 22.000000);
Textdraw1 = TextDrawCreate(559.000000, 400.000000, "Ray-Ban");
TextDrawBackgroundColor(Textdraw1, 255);
TextDrawFont(Textdraw1, 0);
TextDrawLetterSize(Textdraw1, 0.649999, 1.900000);
TextDrawColor(Textdraw1, -1);
TextDrawSetOutline(Textdraw1, 1);
TextDrawSetProportional(Textdraw1, 1);
return 1;
}
public OnFilterScriptExit()
{
TextDrawHideForAll(Textdraw0);
TextDrawDestroy(Textdraw0);
TextDrawHideForAll(Textdraw1);
TextDrawDestroy(Textdraw1);
return 1;
}
public OnPlayerConnect(playerid)
{
Showing[playerid] = 0;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext, "/gafas"))
{
GameTextForPlayer(playerid,"~g~~h~~h~Te sacaste las gafas!",5000,5);
if(Showing[playerid] == 1)
{
Showing[playerid] = 0;
TextDrawHideForPlayer(playerid, Textdraw0);
TextDrawHideForPlayer(playerid, Textdraw1);
}
else
{
GameTextForPlayer(playerid,"~g~~h~~h~Gafas Ray-ban puestas!~n~~w~~h~~h~Pone /gafas de nuevo para sacartelas",5000,5);
Showing[playerid] = 1;
TextDrawShowForPlayer(playerid, Textdraw0);
TextDrawShowForPlayer(playerid, Textdraw1);
}
}
return 1;
}