Üzenetek megjelenítése

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 - nyE

Oldalak: 1 ... 6 7 [8] 9 10 ... 117
106
Beszélgetés / Ban játék
« Dátum: 2012. augusztus 13. - 21:55:14 »
Antonyo bannolta Dommper-t. Indok: Minnyá 10 óra fúúj

107
Hangszerek és előadók / Milyen zenét szeretsz???::D
« Dátum: 2012. augusztus 13. - 15:12:59 »
House, Tech House, Minimal Techno

108
Szkript kérések / [MEGOLDVA]Idõzített command
« Dátum: 2012. augusztus 13. - 14:50:11 »
Nem teszteltem, de elvileg mûködik.
 

CMD:healme(playerid, params[])
{
    if(GetPVarInt(playerid, \"healme\") == 1) return SendClientMessage(playerid, -1, \"Nem telt le a 25 perc!\");
    else if(GetPVarInt(playerid, \"healme\") == 0)
    {
        SetPVarInt(playerid, \"healme\", 1);
SetPlayerHealth(playerid, 100);
SetTimerEx(\"HealmeTime\", 25*(60*1000), false, \"i\", playerid);
    }
    return 1;
}
forward HealmeTime(playerid);
public HealmeTime(playerid) return SetPVarInt(playerid, \"healme\", 0);

109
Szkript kérések / Progress bar
« Dátum: 2012. augusztus 13. - 14:39:18 »
Progress.inc Letöltés! Bõvebb leírás: Katt!
Zcmd.inc Letöltés!
 

#include <a_samp>
#include <zcmd>
#include <progress>
new Bar:bar, BarTimer[MAX_PLAYERS];
CMD:bartest(playerid, params[])
{
    bar = CreateProgressBar(268.00, 222.00, 102.50, 8.50, 0xB60000FF, 59);
    ShowProgressBarForPlayer(playerid, bar);
    UpdateBar(playerid);
    return 1;
}
forward UpdateBar(playerid);
public UpdateBar(playerid)
{
    if(GetProgressBarValue(bar) < 59)
    {
        BarTimer[playerid] = SetTimerEx(\"UpdateBar\", 1000, false, \"i\", playerid);
       SetProgressBarValue(bar, GetProgressBarValue(bar) +1 );
       UpdateProgressBar(bar, playerid);
    }
    else if(GetProgressBarValue(bar) == 59)
    {
        HideProgressBarForPlayer(playerid, bar);
        SetProgressBarValue(bar, 0);
KillTimer(BarTimer[playerid]);
    }
    return 1;
}

110
Beszélgetés / Számoljunk el 10.000-ig!
« Dátum: 2012. augusztus 13. - 13:03:47 »
766.

111
Hangszerek és előadók / Mit hallgatsz most vol. 2
« Dátum: 2012. augusztus 13. - 13:02:14 »

112
Beszélgetés / Fotózd az asztalod.
« Dátum: 2012. augusztus 12. - 20:57:52 »
Kicsit kupi van :D
[hs width=300 height=300]http://kepkezelo.com/images/qxmogb5ybkj06os5mf5.jpg[/hs]

113
Szkript kérések / Üdvözlõ hang
« Dátum: 2012. augusztus 12. - 16:12:40 »
Én kipróbáltam, mûködik.
 
public OnPlayerConnect(playerid)
{
    PlayAudioStreamForPlayer(playerid,\"http://www.webvilagserver1.jatekoldal.net/udvozollek.ogg\");
    return 1;
}

 

Idézetet írta: JaCk date=1344780033\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"25928\" data-ipsquote-contentclass=\"forums_Topic
Van audio kliensed feltéve?
 
0.3e-nél már nem kell audio kliens.

114
Hangszerek és előadók / Mit hallgatsz most vol. 2
« Dátum: 2012. augusztus 12. - 15:08:13 »

115
Segítségkérés / Parancsokra ható anti flood
« Dátum: 2012. augusztus 12. - 13:11:24 »
Próbáld így:
 

#include <a_samp>
public OnPlayerConnect(playerid)
{
    SetPVarInt(playerid, \"HEALFLOOD\", 9999999999);
    return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
    if(strcmp(cmdtext, \"/health\", true) == 0)
    {
        SetPlayerHealth(playerid,100.0);
        SendClientMessage(playerid, 0x33CCFFAA,\"Feltöltöted az életed\");
        if(GetPVarInt(playerid, \"HEALFLOOD\") < (gettime() + 30000)) return SendClientMessage(playerid, -1, \"Ne élj vissza a /health paranccsal !\");
        SetPVarInt(playerid, \"HEALFLOOD\", gettime());
        return 1;
    }
    if(strcmp(cmdtext, \"/armour\", true) == 0)
    {
        SetPlayerArmour(playerid,100.0);
        SendClientMessage(playerid, 0x33CCFFAA,\"Feltöltöted a pajzsod\");
        if(GetPVarInt(playerid, \"HEALFLOOD\") < (gettime() + 30000)) return SendClientMessage(playerid, -1, \"Ne élj vissza a /armour paranccsal !\");
        SetPVarInt(playerid, \"HEALFLOOD\", gettime());
        return 1;
    }
    return 0;
}

 
Az OnPlayerConnect-bõl hiányzott a playerid, ezért írt hibát.

116
SA-MP: Szerverfejlesztés / Gentleman\'s House System
« Dátum: 2012. augusztus 12. - 10:56:00 »
Nagyon jó lett! Végre kezdek rájönni a házrendszerek mûködésére :)
 
Idézetet írta: Amf date=1344633218\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"25862\" data-ipsquote-contentclass=\"forums_Topic
Én is Dini-t használok semmi gondom nincs vele, MySQL -hez, és társaihoz nem értek sajnos...
 
Dettó

117
Beszélgetés / Általános
« Dátum: 2012. augusztus 12. - 08:36:05 »
Idézetet írta: Popec16 date=1344702397\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"1\" data-ipsquote-contentclass=\"forums_Topic


 

 

kamu az egész, hagyjál már...
 
[/quote]
ahogy érzed :D...... az történt amit leírtam....én se hittem el elõször... de igaz.... mondjuk ilyen csak a pornófilmekben történik meg a mesékben... de ezek szerint mégse XD
itt a beszélgetés ismét, írt a csaj megint...:)





i find you :$ <            33333333     
szerdaHenriik Huszár
i hope you my angel :$ *-* <333
i only this time face one hour one day but i go home lot of time i use facebook!!
szerdaHenriik Huszár
hello
are you here?
<33
:$
???
are you hhere?:$$$3
here
???
szerdaHenriik Huszár
Вы там?
csütörtökHenriik Huszár
?
csütörtökIrina Zelenskaya
Would you like to go for a walk? I think we need to talk
I\'m on children playground now
No , I have to go to children , sorry
csütörtökHenriik Huszár
Hey i love you but you have got children and husband:\\ and every time i see your eyes you are my one think !!<333
csütörtökIrina Zelenskaya
Dear , Henriik , you don\'t love me , you just like me . And it\'s ok . I think than i should\'t look at you and smile to you .It\'s not right, cause i have family . our relationship with my husband is not good . but anyway I\'m not free. and i\'m much older than you. you are a wonderful young boy , and i like you much , but i should not. i\'m so sorry. i wish you all the best ! i would like to take you away , to kiss you and love you, but i can\'t . good night , my adorable boy )))
TegnapHenriik Huszár
Dear Irina  But I am, I am in love with you, you\'re beautiful.... You can look at me and smile at, you have an amazing smile! I know you have a family, but I cant take it without you... I\'m going home on Saturday.... You can take me with you, kiss me, hug me, you can do ANYTHING with me!
You\'re really beautiful, I love you a lot!!
22 órájaIrina Zelenskaya
my dear, i don\'t know what to do . please understand me . it\'s very strange . you are amazing . but i on\' t know what should we do.........................
20 órájaHenriik Huszár
Look,dear i i cant take it without you tomorrow.i am still yours,lets go for a walk in the evening,lets do something.i cant bear it without you.I ove you so much!!!i\'m going home on saturday :/:/: I LOVE U!!<33333333333333
2 órájaIrina Zelenskaya
My dear boy , I miss you so much . I woke up early and went reception just to see you one more time . I did\'t sleep last night I was thinking about you and about your words. I was crying . And now I don\'t know what to do , I don,t want to go to the beach because you are not there , I can,t watch you on the balcony because other people are standing there . I want see you . And kiss you . I hope I will come to Budapest and we will see each other .
2 órájaIrina Zelenskaya
I have watched your page on Facebook , it looks like you have a girlfriend , right ? If you do , so please leave me , because I have family , and I\'m not gonna play this teenage games. I hope you were honest with me last night.
kb. egy órájaHenriik Huszár
i haven\'t got girlfriend ..
i miss you
i love you !
kb. egy órájaHenriik Huszár
I miss you, too. Yesterday with you was great. You just stuck in my head, It\'s really hard without you. I hope you come to Budapest really soon. Don\'t worry I dont have a girlfriend for quite a time. I dont know why did you think that i had. Trust Me! I Love You!!! I want to be with you!
I really miss you my darling!!!
42 perceHenriik Huszár
I hope you dont have anybody because even this thought can break my heart.My tears are falling because I dont want to end this in my whole lifetime. I want to tell you a thousand time that I love you, I need you I want to sleep with you, I want to be with you and I want to kiss you. That fish and the letter you gave me always stay in my pocket no matter what. I cant hold on without you. I love you!
42 perceHenriik Huszár
but sorry I\'m not very good at english :S:S:/
 
 
[/quote]
Miért ne lenne lehetséges, szerintem ezen semmi meglepõdni való nincsen!:D
Én is oda adtam volna neki amit kér, ha kint vagyok külföldön, tudjátok ami vegasban történt az vegasban is marad! ;) :P
 
[/quote]
Pontosan! Meg aztán a suliban is kérdezik, hogy mit csináltál nyáron . . . :D

118
Hangszerek és előadók / Mit hallgatsz most vol. 2
« Dátum: 2012. augusztus 12. - 08:26:14 »

119
Talán így jó lesz. Ha ez mûködik, akkor ez alapján megtudod csinálni a többit is.
 

CMD:kick(playerid, params[])
{
    new s[128];
    printf(\"%s beírta a /kick parancsot!\", Nev(playerid));
    if(pInfo[playerid][Admin] >= 1)
    {
        id = ReturnUser(params);
if(pInfo[playerid][Admin] < pInfo[id][Admin])
{
    SendClientMessage(playerid, PIROS, \"Nem kickelhetsz magasabb szintû admint!\");
}
        if(pInfo[playerid][Admin] == 1)
{
    new indok[64];
          if(sscanf(params,\"us\",id,indok)) return SendClientMessage(playerid,PIROS,\"Használat: /kick < ID > < Indok >\");
             format(s, 128, \"<<< %s kirúgva %s által Indok: %s >>>\", Nev(id), Nev(playerid), indok);
            SendClientMessageToAll(PIROS, s);
            Kick(id);
        }
        else if(pInfo[playerid][Admin] >= 1)
        {
            new indok[64];
            if(sscanf(params,\"us[64]\",id,indok)) return SendClientMessage(playerid,PIROS,\"Használat: /kick < ID > < Indok >\");
             format(s, 128, \"<<< %s ki lett rúgva %s által Indok: %s >>>\", Nev(id), pInfo[playerid][ANev], indok);
             SendClientMessageToAll(PIROS, s);
             TogglePlayerControllable(id, false);
             Ment(id);
             Kick(id);
}
    }
    else
    {
        SendClientMessage(playerid, SZURKE, \"Nem vagy Kezdõ Admin!\");
    }
    return 1;
}

120
Segítségkérés / luxadmin sok erroral
« Dátum: 2012. augusztus 11. - 10:13:38 »
Azt írja, hogy nincs benne az strtok. Írd bele ezt:
 

strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= \' \'))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (string[index] > \' \') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}

Oldalak: 1 ... 6 7 [8] 9 10 ... 117
SimplePortal 2.3.7 © 2008-2024, SimplePortal