Sziasztok! Ezt a scriptet nemrég készitettem. Tudom nem valami jó. Életem legelsõ scriptje.

De remélem tetszik:) Ha akarjátok akkor a következõ scriptembe meg csinálom hogy Rcon az betudjon lépni:)
LETÖLTÉS:
http://www.solidfiles.com/d/d36d1fca91/ //Helósztók,Sziasztok, Ez az életem elsõ scriptje.
Egyedül csináltam de sokat szenvedtem vele:)
//Remélem tetszenifog!!!
// Elkészitettem:10perc alatt :S Ahogy mondtam \"Életem elsõ scriptje\"
//Készítõ:Én:) Spedy
#include <a_samp>
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
print(\"\\n--------------------------------------\");
print(\" Sknis Betöltve\");
print(\"--------------------------------------\\n\");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
#else
main()
{
print(\"\\n----------------------------------\");
print(\" Blank Gamemode by your name here\");
print(\"----------------------------------\\n\");
}
#endif
public OnGameModeInit()
{
// Don\'t use these lines if it\'s a filterscript
SetGameModeText(\"<PgC Funs>\");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
return 1;
}
public OnGameModeExit()
{
return 1;
}
public OnPlayerText(playerid, text[])
{
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(\"/foxi\", cmdtext, true, 10) == 0)
{
new name[MAX_PLAYER_NAME], SkinID = GetPlayerSkin(playerid);
new DIALOG_WELCOME;
if(SkinID == 125)
{
if(!strcmp(name, \"foxi\", false))
{
}
else
{
ShowPlayerDialog(playerid, DIALOG_WELCOME, DIALOG_STYLE_MSGBOX, \"Ezek a hibák merültek fel:\", \"{00ff11}Sajnálatal közlöm ezt a parancsot csak Foxi használhatja!\", \"OKÉ\", \"OKÉ\");
ForceClassSelection(playerid);
return 0;
}
}
return 1;
}
return 0;
}