Ü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 - JBauer

Oldalak: 1 ... 65 66 [67] 68 69 ... 92
991
Bobo, ne itt hirdess, hanem nyiss új témát.

992
Szkript kérések / Szkrip részlet [elakadtam de be lehet fejezni]
« Dátum: 2012. július 03. - 07:57:51 »
public OnPlayerCommandText(playerid, cmdtext[])
    {
    new bool: win8[MAX_PLAYERS];
    new bool: win7[MAX_PLAYERS];
    new bool: winvista[MAX_PLAYERS];
    new bool: winxp[MAX_PLAYERS];
    new bool: win98[MAX_PLAYERS];
    new bool: win95[MAX_PLAYERS];
    new bool: winnxt[MAX_PLAYERS];
    if(strcmp(cmdtext, \"/windows8\", true) == 0)
    {
    if(ADMINVÁLTOZÓDIDEMÁSOLDBE >= 2)
    {
    SendClientMessage(playerid, -1, \"Átváltottál Windows 8-ra!\");
    win8[playerid] = true;
    }
    return 1;
    }
    if(strcmp(cmdtext, \"/windows7\", true) == 0)
    {
    SendClientMessage(playerid, -1, \"Átváltottál Windows 7-re!\");
    win7[playerid] = true;
    return 1;
    }
    if(strcmp(cmdtext, \"/windowsvista\", true) == 0)
    {
    SendClientMessage(playerid, -1, \"Átváltottál Windows Vista-ra!\");
    winvista[playerid] = true;
    return 1;
    }
    if(strcmp(cmdtext, \"/windowsxp\", true) == 0)
    {
    SendClientMessage(playerid, -1, \"Átváltottál Windows XP-re!\");
    winxp[playerid] = true;
    return 1;
    }
    if(strcmp(cmdtext, \"/windows98\", true) == 0)
    {
    SendClientMessage(playerid, -1, \"Átváltottál Windows 98-ra!\");
    win98[playerid] = true;
    return 1;
    }
    if(strcmp(cmdtext, \"/windows95\", true) == 0)
    {
    SendClientMessage(playerid, -1, \"Átváltottál Windows 95-re!\");
    win95[playerid] = true;
    return 1;
    }
    if(strcmp(cmdtext, \"/windowsnxt\", true) == 0)
    {
    SendClientMessage(playerid, -1, \"Átváltottál Windows NXT-re!\");
    winnxt[playerid] = true;
    return 1;
    }
    if(strcmp(cmdtext, \"/winversion\", true) == 0)
    {
    if(win8[playerid] == true)
    {
    SendClientMessage(playerid, -1, \"Windows verziód: Win 8\");
    }
    else if(win7[playerid] == true)
    {
    SendClientMessage(playerid, -1, \"Windows verziód: Win 7\");
    }
    else if(winvista[playerid] == true)
    {
    SendClientMessage(playerid, -1, \"Windows verziód: Win Vista\");
    }
    else if(winxp[playerid] == true)
    {
    SendClientMessage(playerid, -1, \"Windows verziód: Win XP\");
    }
    else if(win98[playerid] == true)
    {
    SendClientMessage(playerid, -1, \"Windows verziód: Win 98\");
    }
    else if(win95[playerid] == true)
    {
    SendClientMessage(playerid, -1, \"Windows verziód: Win 95\");
    }
    else if(winnxt[playerid] == true)
    {
    SendClientMessage(playerid, -1, \"Windows verziód: Win NXT\");
    }
    return 1;
    }
    return 0;
    }
     

993
Szkript kérések / Szkrip részlet [elakadtam de be lehet fejezni]
« Dátum: 2012. július 02. - 21:39:20 »
public OnPlayerCommandText(playerid, cmdtext[])
    {
    new bool: win8[MAX_PLAYERS];
    new bool: win7[MAX_PLAYERS];
    new bool: winvista[MAX_PLAYERS];
    new bool: winxp[MAX_PLAYERS];
    new bool: win98[MAX_PLAYERS];
    new bool: win95[MAX_PLAYERS];
    new bool: winnxt[MAX_PLAYERS];
    if(strcmp(cmdtext, \"/windows8\", true) == 0)
    {
    if(ADMINVÁLTOZÓDIDEMÁSOLDBE >= 2)
    {
    SendClientMessage(playerid, -1, \"Átváltottál Windows 8-ra!\");
    win8[playerid] = true;
    }
    return 1;
    }
    if(strcmp(cmdtext, \"/windows7\", true) == 0)
    {
    if(ADMINVÁLTOZÓDIDEMÁSOLDBE >= 2)
    {
    SendClientMessage(playerid, -1, \"Átváltottál Windows 7-re!\");
    win7[playerid] = true;
    }
    return 1;
    }
    if(strcmp(cmdtext, \"/windowsvista\", true) == 0)
    {
    if(ADMINVÁLTOZÓDIDEMÁSOLDBE >= 2)
    {
    SendClientMessage(playerid, -1, \"Átváltottál Windows Vista-ra!\");
    winvista[playerid] = true;
    }
    return 1;
    }
    if(strcmp(cmdtext, \"/windowsxp\", true) == 0)
    {
    if(ADMINVÁLTOZÓDIDEMÁSOLDBE >= 2)
    {
    SendClientMessage(playerid, -1, \"Átváltottál Windows XP-re!\");
    winxp[playerid] = true;
    }
    return 1;
    }
    if(strcmp(cmdtext, \"/windows98\", true) == 0)
    {
    if(ADMINVÁLTOZÓDIDEMÁSOLDBE >= 2)
    {
    SendClientMessage(playerid, -1, \"Átváltottál Windows 98-ra!\");
    win98[playerid] = true;
    }
    if(strcmp(cmdtext, \"/windows95\", true) == 0)
    {
    if(ADMINVÁLTOZÓDIDEMÁSOLDBE >= 2)
    {
    SendClientMessage(playerid, -1, \"Átváltottál Windows 95-re!\");
    win95[playerid] = true;
    }
    return 1;
    }
    if(strcmp(cmdtext, \"/windowsnxt\", true) == 0)
    {
    if(ADMINVÁLTOZÓDIDEMÁSOLDBE >= 2)
    {
    SendClientMessage(playerid, -1, \"Átváltottál Windows NXT-re!\");
    winnxt[playerid] = true;
    }
    return 1;
    }
    if(strcmp(cmdtext, \"/winversion\", true) == 0)
    {
    if(win8[playerid] == true)
    {
    SendClientMessage(playerid, -1, \"Windows verziód: Win 8\");
    }
    else if(win7[playerid] == true)
    {
    SendClientMessage(playerid, -1, \"Windows verziód: Win 7\");
    }
    else if(winvista[playerid] == true)
    {
    SendClientMessage(playerid, -1, \"Windows verziód: Win Vista\");
    }
    else if(winxp[playerid] == true)
    {
    SendClientMessage(playerid, -1, \"Windows verziód: Win XP\");
    }
    else if(win98[playerid] == true)
    {
    SendClientMessage(playerid, -1, \"Windows verziód: Win 98\");
    }
    else if(win95[playerid] == true)
    {
    SendClientMessage(playerid, -1, \"Windows verziód: Win 95\");
    }
    else if(winnxt[playerid] == true)
    {
    SendClientMessage(playerid, -1, \"Windows verziód: Win NXT\");
    }
    return 1;
    }
    return 0;
    }
     

 
A pawno nem ír rá hibát, de nem teszteltem élesben.
UI.: Bocsi a sorok elcsúszásáért.

994
Munkaerő keresése / Hostos felhasználót keressek! :)
« Dátum: 2012. július 02. - 21:31:47 »
Nekem van egy 25 slotos szerverem, Legendtõl fut. Ha érdekel akkor PÜ.

995
Õ egy külön stílust akar megalkotni.

996
Szkript kérések / Szkrip részlet [elakadtam de be lehet fejezni]
« Dátum: 2012. július 02. - 20:49:43 »
Igen, holnapra megcsinálom.
   

997
Segítségkérés / Admin CMD
« Dátum: 2012. július 02. - 20:07:21 »
Szerintem strcmp kell neki, mert egy másik script kérésében is arra volt szüksége.

998
Segítségkérés / Admin CMD
« Dátum: 2012. július 02. - 19:57:54 »
Én is szívesen segítek, csak ha tudod akkor érthetõen írd le, hogy milyen parancskezelõvel, mit csináljon a parancs, ki és mi használhassa stb..

999
Segítségkérés / Admin CMD
« Dátum: 2012. július 02. - 19:49:08 »
Idézetet írta: Olie date=1341248493\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"23629\" data-ipsquote-contentclass=\"forums_Topic


mi a hiba?
 
Jbauer, te is return windows8at irtal
telorol nem tudom masolni :(
 
[/quote]
Gondolom van neki egy windows 8 függvénye vagy valami, és akkor az hívódik meg.

1000
Szkript kérések / Szkrip részlet [elakadtam de be lehet fejezni]
« Dátum: 2012. július 02. - 19:47:21 »
public OnPlayerCommandText(playerid, cmdtext[])
{
new bool: win8[MAX_PLAYERS];
if(strcmp(cmdtext, \"/windows8\", true) == 0)
{
if(ADMINVÁLTOZÓDIDEMÁSOLDBE >= 2)
{
SendClientMessage(playerid, -1, \"Átváltottál Windows 8-ra!\");
win8[playerid] = true;
}
return 1;
}
if(strcmp(cmdtext, \"/winversion\", true) == 0)
{
if(win8[playerid] == true)
{
SendClientMessage(playerid, -1, \"Windows verziód: Win 8\");
} else {
SendClientMessage(playerid, -1, \"Windows verziód: Win 7\");
}
return 1;
}
return 0;
}

 
Tessék, nem teszteltem, ha nem így gondoltad akkor szólj.

1001
Segítségkérés / Admin CMD
« Dátum: 2012. július 02. - 18:56:10 »
mi a hiba?

1002
Segítségkérés / Admin CMD
« Dátum: 2012. július 02. - 18:38:56 »
CMD:winindowsnyolc(playerid, params[])
{
if(Info[playerid][Level] >= 1)
{
return Windows8;
                // Ennek a helyére jöhetnek azok, amit szeretnél, hogy csináljon a parancs//
                  } else return Windows7;
                  
                  // Ha valaki nem admin, akkor a parancs nem csinál semmit //

 
így?

1003
Segítségkérés / Szerver IP (házi)
« Dátum: 2012. július 02. - 17:17:29 »
Már megy a dot.tk

1004
RP/RPG kérések / Rpg Mod Kérés!
« Dátum: 2012. július 02. - 16:10:43 »

1005
SA-MP: Szerverfejlesztés / fixchars 2
« Dátum: 2012. július 01. - 22:36:03 »
Én nem használom, csak találtam a neten és gondoltam kirakom, ha már ékezetes parancs kell neki :D

Oldalak: 1 ... 65 66 [67] 68 69 ... 92
SimplePortal 2.3.7 © 2008-2024, SimplePortal