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

Oldalak: 1 ... 171 172 [173] 174 175 ... 318
2581
Segítségkérés / Nem törli a pickupot
« Dátum: 2014. március 14. - 12:12:56 »
[mod]
Idézetet írta: tudvari date=1394793364\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"47118\" data-ipsquote-contentclass=\"forums_Topic
Köszi :D
Ebbõl azt vettem le, hogy megoldódott a problémád. Ha mégsem írj PÜ-t. Témát zárom![/mod]

2582
Segítségkérés / Felcserélõdött,villogó textdrawok
« Dátum: 2014. március 14. - 07:22:26 »
[mod]Témát zártam! Krélek jelezd PÜ-ben, ha mégsem oldódott meg a problémád[/mod]

2583
Segítségkérés / Anim hiba
« Dátum: 2014. március 13. - 16:41:17 »
[mod]Ha megoldódott a problémád, kérlek zárd a témát![/mod]

2584
Segítségkérés / Felcserélõdött,villogó textdrawok
« Dátum: 2014. március 13. - 13:45:01 »
playerid helyett for ciklus >> i

2585
Segítségkérés / Felcserélõdött,villogó textdrawok
« Dátum: 2014. március 13. - 13:42:09 »
Tessék:
 
forward SebBenBen();
public SebBenBen() //timer
{
new Str[128];
for(new i; i < MAX_PLAYERS: i++) {
if(!IsPlayerConnected(i)) continue;
format(Str, sizeof(Str), \"~y~%d ~w~km/h\", GetVehicleSpeed(GetPlayerVehicleID(i)));
TextDrawSetString(M_Seb, Str);
new Float: vHealth;
GetVehicleHealth( GetPlayerVehicleID(i), vHealth );
new vHealth_INT = floatround( vHealth, floatround_round);
new Str2[128];
format(Str2, sizeof(Str2), \"~y~Állapot: ~w~%d\", vHealth_INT);
TextDrawSetString(M_All, Str2);
new Str3[128];
new liter;
liter = JarmuInfo[GetPlayerVehicleID(i)][uzemanyag];
format(Str3, sizeof(Str3), \"~y~Üzemanyag: ~w~%d%\", liter);
TextDrawSetString(M_Uzemanyag, Str3);
}
}

 
talán így..

2586
I. Régió / [1. Forduló] citrom.so VS. Flash
« Dátum: 2014. március 13. - 13:35:27 »
Sok sikert.
Gyõzzön a jobbik :)

2587
Beszélgetés / Számoljunk el 10.000-ig!
« Dátum: 2014. március 12. - 19:30:00 »
Spoiler for printf(\"%i\", 250*4+222-1);:
1221

2588
Segítségkérés / Nullás ID BUG
« Dátum: 2014. március 12. - 15:30:04 »
használj for ciklust!
http://sampforum.hu/index.php?topic=6399.0
Példa:
 
for(new i; i < MAX_PLAYERS; i++) {
if(!IsPlayerConnected(i)) continue;
if(IsPlayerInRangeOfPoint(i, tavolsag, X, Y, Z)) {
// ide a többit ugyanúgy \'playerid\' helyett \'i\'
}
}

2589
Segítségkérés / Nullás ID BUG
« Dátum: 2014. március 12. - 14:54:56 »
De ha bemásolnád a kódot sokkal könnyebb dolgunk lenne. ;)

2590
Segítségkérés / terület foglalás
« Dátum: 2014. március 11. - 06:56:04 »
Tessék, még egyszerüsítettem is neked ;)
 
public OnPlayerEnterDynamicArea(playerid, areaid) {
if(areaid == SzerverInfo[GangZone1Terulet] && SzerverInfo[GangZone1Team] != JatekosInfo[playerid][JatekMode]) SzerverInfo[GangZone1Join]++;
    if(areaid == SzerverInfo[GangZone2Terulet] && SzerverInfo[GangZone2Team] != JatekosInfo[playerid][JatekMode]) SzerverInfo[GangZone2Join]++;
return 1;
}
public OnPlayerLeaveDynamicArea(playerid, areaid) {
    if(areaid == SzerverInfo[GangZone1Terulet] && SzerverInfo[GangZone1Team] != JatekosInfo[playerid][JatekMode]) SzerverInfo[GangZone1Join]--;
    if(areaid == SzerverInfo[GangZone2Terulet] && SzerverInfo[GangZone2Team] != JatekosInfo[playerid][JatekMode]) SzerverInfo[GangZone2Join]--;
return 1;
}
public globaltimer() {
    if(SzerverInfo[GangZone1Join] >= 2) {
if(SzerverInfo[GangZone1Team] == 1) GangZoneFlashForAll(SzerverInfo[GangZone1], 0xFF000090);
if(SzerverInfo[GangZone1Team] == 2) GangZoneFlashForAll(SzerverInfo[GangZone1], 0x001EFF90);
        if(!SzerverInfo[GangZone1Timer]) SzerverInfo[GangZone1Count] = 60;
SzerverInfo[GangZone1Timer] = 1;
}
if(SzerverInfo[GangZone1Join] < 2) {
        GangZoneStopFlashForAll(SzerverInfo[GangZone1]);
        SzerverInfo[GangZone1Timer]=0;
}
if(SzerverInfo[GangZone1Timer] == 1) SzerverInfo[GangZone1Count]--;
     if(!SzerverInfo[GangZone1Count]) {
         SzerverInfo[GangZone1Timer] = 0;
         GangZoneStopFlashForAll(SzerverInfo[GangZone1]);
}
if(SzerverInfo[GangZone1Team] == 1) {
       GangZoneShowForAll(SzerverInfo[GangZone1], 0xFF000090);
GangZoneFlashForAll(SzerverInfo[GangZone1], 0xFF000090);
         SzerverInfo[GangZone1Team] = 2;
}
     if(SzerverInfo[GangZone1Team] == 2) {
         GangZoneShowForAll(SzerverInfo[GangZone1], 0x001EFF90);
GangZoneFlashForAll(SzerverInfo[GangZone1], 0x001EFF90);
        SzerverInfo[GangZone1Team] = 1;
     }
return 1;
}

2591
Segítségkérés / Villám kérdés(Kick-szöveg gond)
« Dátum: 2014. március 10. - 14:02:32 »
Használd ezt:
 
stock Kick2(playerid) return SetTimerEx(\"Kick3\", 800, false, \"i\", playerid);
stock Kick3(playerid) return Kick(playerid);

 
használata:
 
 SendClientMessage(playerid,0xff0000AA,\" Majd legközelebb...\");
Kick2(playerid);

2592
Szkript kérések / Zene lejátszó(mindenki halja!)
« Dátum: 2014. március 10. - 12:08:40 »
[mod]Témát zárom![/mod]

2593
Archívum / Új Lokális Moderátorok
« Dátum: 2014. március 09. - 20:08:19 »
Köszönöm szépen mindenkinek a bizalmat, remélem nem fogok senkinek se csalódást okozni a továbbiakban sem! :)
Minden \'bejutónak\' Gratulálok, kiérdemeltétek!
Pedró: Reméljük legközelebb sikerrel jársz, de a Segítõkész rangodra sem lehet panaszod ;)
További jó fórumozást kívánok mindenkinek!

2594
Szkript kérések / Kocsi MAXHP megemelése
« Dátum: 2014. március 09. - 17:28:33 »
[mod]Ha megoldódott a problémád, kérlek zárd a témát![/mod]

2595
Kérdések, Segítség / Windows 7 512 RAM-al?
« Dátum: 2014. március 09. - 00:09:58 »
Idézetet írta: Virat date=1394319015\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"46954\" data-ipsquote-contentclass=\"forums_Topic
Gondolom azon kívül semmi probléma, hogy dög lassú nem?
 
Ellenkezõleg :)

Oldalak: 1 ... 171 172 [173] 174 175 ... 318
SimplePortal 2.3.7 © 2008-2025, SimplePortal