Zsír!
Ez a szekció lehetővé teszi a felhasználó által írt összes hozzászólás megtekintését. Vedd figyelembe, hogy csak azokba a fórumokba írt hozzászólásokat látod, amelyekhez hozzáférésed van.
Üzenetek megjelenítése menüIdézetet írta: cappsy date=1353944139\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"30231\" data-ipsquote-contentclass=\"forums_TopicHát nem egy agytörõ munka :DD:D Értem.
De aprólékos nekem nem lenne ennyi türelmem rá pl...
#include <a_samp>
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(\"/colour\", cmdtext, true, 10) == 0) // Dialog
{
ShowPlayerDialog(playerid, 24, DIALOG_STYLE_LIST, \"Válasz egy szint!\", \"{FF0000}Piros\\n{0000FF}Kék\\n{FFFF00}Sárga\\n{00FF00}Zöld\\n{000000}Fekete\\n{800080}Bíbor\\n{FF8000}Narancs Sárga\\n{3D2929}Barna\\n{808080}Szürke\\n{FFFFFF}Fehér\\n{808000}Arany\\n{FF00FF}Ezüst\\n{C0C0C0}Lila\\n{00FFFF}Világos Kék\\n{808000}ZöldSárga\\n{004000}Sötét Zöld\\n{FFFF80}Világos Sárga\\n{FF80FF}Világos Lila\\n{DD99B3}Világos Koral\\n{747474}Sötét Szürke\", \"Kiválasztom!\", \"Kilépés!\");
return 1;
}
return 0;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == 24)
{
if(response)
{
if(listitem == 0) // itt lesznek a szinek
{
SetPlayerColor(playerid,0xfc0505AA);
}
if(listitem == 1) {
SetPlayerColor(playerid,0x0800faAA);
}
if(listitem == 2) {
SetPlayerColor(playerid,0xdfe617AA);
}
if(listitem == 3) {
SetPlayerColor(playerid,0x24f511AA);
}
if(listitem == 4) {
SetPlayerColor(playerid,0x000000FF);
}
if(listitem == 5) {
SetPlayerColor(playerid,0xdbc011AA);
}
if(listitem == 6) {
SetPlayerColor(playerid,0xf7b42dAA);
}
if(listitem == 7) {
SetPlayerColor(playerid,0x96782cAA);
}
if(listitem == 8) {
SetPlayerColor(playerid,0x8a8a8aAA);
}
if(listitem == 9) {
SetPlayerColor(playerid,0xFFFFFFFF);
}
if(listitem == 10) {
SetPlayerColor(playerid,0xede432AA);
}
if(listitem == 11) {
SetPlayerColor(playerid,0xccccccAA);
}
if(listitem == 12) {
SetPlayerColor(playerid,0x08f5f5AA);
}
if(listitem == 13) {
SetPlayerColor(playerid,0xc6f508AA);
}
if(listitem == 14) {
SetPlayerColor(playerid,0x378c30AA);
}
if(listitem == 15) {
SetPlayerColor(playerid,0xf7f70dAA);
}
if(listitem == 16) {
SetPlayerColor(playerid,0xea00ffAA);
}
if(listitem == 17) {
SetPlayerColor(playerid,0xF08080FF);
}
if(listitem == 18) {
SetPlayerColor(playerid,0x707070AA);
}
}
}
return 1;
}
Idézetet írta: ZyZu date=1353696836\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"30141\" data-ipsquote-contentclass=\"forums_Topichát akkor nem tudom, itt van az én pawno mappám tölsd le: http://www.solidfiles.com/d/ffdeb475fc/\" rel=\"external nofollow\">http://www.solidfiles.com/d/ffdeb475fc/Így se jó :S
Idézetet írta: ZzzzzZ date=1353693545\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"30141\" data-ipsquote-contentclass=\"forums_Topicpróbáld átírni az utils-t dutils-raÍgy meg a másik inc -t hiányolja.. De azis megvan a pawno --> include mappába.
fatal error 100: cannot read from file: \"utils\"
//----------------------------------------------------------------------------//
//[sDW]BlackJack és Spedy Munkája!
//----------------------------------------------------------------------------//
#include <a_samp>
#include <zcmd>
public OnFilterScriptInit()
{
print(\"\\n------------------------------------------\");
print(\"God mode rendszer by:[sDW]BlackJack és Spedy!\");
print(\"--------------------------------------------\\n\");
return 1;
}
//------------------------------------------------------------------------------
public OnPlayerConnect(playerid)
{
SendClientMessage(playerid,-2,\"God mode rendszer by:[sDW]BlackJack és Spedy!\");
return 1;
}
//------------------------------------------------------------------------------
CMD:god(playerid)
{
new pName[30];
new string[256];
SetPlayerHealth(playerid, 999999);
SetPlayerArmour(playerid, 999999);
ShowPlayerDialog(playerid, 2525, DIALOG_STYLE_MSGBOX, \"{20d110}GodMode!{20d110}\", \"Te be kapcsoltad a god modet!\", \"Elfogad!\", \"\");
GetPlayerName(playerid, pName, 30);
format(string, 280, \"*%s ezt a parancsot használta:/god!\", pName);
SendClientMessageToAll(0xFFFF00AA, string);
return 1;
}
//------------------------------------------------------------------------------
CMD:godoff(playerid)
{
new pName[30];
new string[256];
SetPlayerHealth(playerid, 100.0);
SetPlayerArmour(playerid, 100.0);
ShowPlayerDialog(playerid, 2525, DIALOG_STYLE_MSGBOX, \"{20d110}GodMode!{20d110}\", \"Te ki kapcsoltad a god modet!\", \"Elfogad!\", \"\");
GetPlayerName(playerid, pName, 30);
format(string, 280, \"*%s ezt a parancsot használta:/godoff!\", pName);
SendClientMessageToAll(0xFFFF00AA, string);
return 1;
}
//------------------------------------------------------------------------------
CMD:godhelp(playerid)
{
new pName[30];
new string[256];
ShowPlayerDialog(playerid, 2525, DIALOG_STYLE_MSGBOX, \"{20d110}GodMode help!{20d110}\", \"Parancsok:/god\\n/godoff\\n/godhelp\\nKészitette:[sDW]BlackJack és Spedy!\", \"Elfogad!\", \"\");
GetPlayerName(playerid, pName, 30);
format(string, 280, \"*%s ezt a parancsot használta:/godhelp!\", pName);
SendClientMessageToAll(0xFFFF00AA, string);
return 1;
}
//----------------------------------------------------------------------------//
//[sDW]BlackJack és Spedy Munkája!
//----------------------------------------------------------------------------//
Az oldal 0.040 másodperc alatt készült el 21 lekéréssel.