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. 4171
Fórum Archívum (Témák/Fórumok) / Clans.hu« Dátum: 2011. november 14. - 15:27:52 »
Nincs gond a hostal..
4172
Archívum / [HUN].:*Malibu Full Party Szerver*:.« Dátum: 2011. november 14. - 15:22:17 »Idézetet írta: krisk date=1320520992\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"13099\" data-ipsquote-contentclass=\"forums_Topic Sok sikert. (Bár a Malibu drift befigyel.) 4173
Archívum / [HuN]...:::Pakony Szerver:::...« Dátum: 2011. november 14. - 15:19:57 »
No comment.
4174
Törölt RP Szerverek / [HUN]North Role Play||powered by clans.hu« Dátum: 2011. november 14. - 15:18:27 »Idézetet írta: James_Raynor date=1321276512\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"13341\" data-ipsquote-contentclass=\"forums_Topic A Kolléga jól megfogalmazta. Nem az a gond, hogy GF, hanem az, hogy nem csinál SZINTE senki jó minõségû átiratot. HA és ismétlem HA fektetsz bele 3-4 hónapot a fejlesztésébe legalább 2-3 haveroddal akkor nagyon jókat lehet alkotni, de ez a \"leszedtem, felrakom, holnap nyitok\" mûfaj halva született ötlet.
4175
Törölt RP Szerverek / Half Life Role Play V2.0« Dátum: 2011. november 14. - 15:14:41 »Idézetet írta: Ilhg date=1321219474\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"13128\" data-ipsquote-contentclass=\"forums_Topic Vettem a fáradságot, és készítettem a szervernek pár vidit 4176
SA-MP: Szerverfejlesztés / Ultimate_Trucking[ENG]« Dátum: 2011. november 14. - 15:08:25 »Idézetet írta: halaloszto100 date=1321218982\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"12872\" data-ipsquote-contentclass=\"forums_Topic
4177
Szkript kérések / Anim,report szoba(k)« Dátum: 2011. november 14. - 14:58:03 »
Anim:
[pawn]//====inc/ #include <a_samp> //====Float/ new Float:phealth[MAX_PLAYERS]; new Float:vhealth[MAX_PLAYERS]; new Float:vhp; //====forward / forward OnPlayerGetHealth(playerid, health); forward OnPlayerLoseHealth(playerid, health); forward OnVehicleLoseHealth(playerid, vehid, health); public OnFilterScriptInit() { return 1; } public OnPlayerSpawn(playerid) { phealth[playerid] = 100; //kezdõ élet return 1; } public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger) { GetVehicleHealth(vehicleid, vhp); vhealth[playerid] = vhp; return 1; } public OnVehicleLoseHealth(playerid, vehid, health) { new Float:php; new Float:vX, Float:vY, Float:vZ; if(health >= 100) { GetVehiclePos(vehid,vX,vY,vZ); SetPlayerPos(playerid,vX+1.5,vY+1.5,vZ); // kamera állás TogglePlayerControllable(playerid,0); GetPlayerHealth(playerid, php); SetPlayerHealth(playerid, php-30); SetPlayerDrunkLevel(playerid,10000); ApplyAnimation(playerid,\"CRACK\",\"crckdeth2\",4.1,1,1,1,1,1) //anim tipus SetTimerEx(\"animban\",15000,0,\"i\",playerid); //timer, idõ } return 1; } public OnPlayerLoseHealth(playerid, health) { new Float:php; GetPlayerHealth(playerid,php); if(health >= 30 || php > 10) { SetPlayerDrunkLevel(playerid,25000); SetTimerEx(\"nincsgond\",5000,0,\"i\",playerid); } return 1; } public OnPlayerGetHealth(playerid, health) { new Float:php; GetPlayerHealth(playerid,php); if(php > 15) { SetPlayerDrunkLevel(playerid,0); } return 1; } public OnPlayerUpdate(playerid) { new Float:hp; GetPlayerHealth(playerid, hp); if(hp == 0) { phealth[playerid] = 0; } if(hp < phealth[playerid]) { OnPlayerLoseHealth(playerid,floatround(phealth[playerid]-hp)); phealth[playerid] = hp; } if(hp > phealth[playerid]) { OnPlayerGetHealth(playerid, floatround(hp-phealth[playerid])); phealth[playerid] = hp; } if(hp <= 10) { SetPlayerDrunkLevel(playerid,45000); } if(IsPlayerInAnyVehicle(playerid)) { GetVehicleHealth(GetPlayerVehicleID(playerid), vhp); new vehid = GetPlayerVehicleID(playerid); if(vhp < vhealth[playerid]) { OnVehicleLoseHealth(playerid,vehid,floatround(vhealth[playerid]-vhp)); vhealth[playerid] = vhp; } } return 1; } forward animban(playerid); public animban(playerid) { ClearAnimations(playerid); TogglePlayerControllable(playerid,1); SetCameraBehindPlayer(playerid); SetPlayerDrunkLevel(playerid,0); return 1; } forward nincsgond(playerid); public nincsgond(playerid) { SetPlayerDrunkLevel(playerid,0); return 1; } [/pawn] /segit [pawn]if(strcmp(cmd, \"/segit\",true) == 0) { if (giveplayerid == playerid) { SendClientMessage(playerid, 0xFFFF00AA, \"Magadat nem segítheted fel.\"); } tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_WHITE, \"HASZNÁLD: /segit [playerid]\"); return 1; } giveplayerid = strval(tmp); if(IsPlayerConnected(giveplayerid)) { SetPlayerHealth(giveplayerid,35); ClearAnimations(giveplayerid); ApplyAnimation(playerid, \"BOMB\", \"Bomb\",4.1,1,1,1,1,1,1); return 1; } else { SendClientMessage(playerid, COLOR_RED, \"Nincs ilyen ID!\"); return 1; } }[/pawn] 4178
SA-MP: Szerverfejlesztés / Magyar LuxAdmin« Dátum: 2011. november 13. - 21:56:12 »Idézetet írta: .:Secur:. date=1315083497\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"9986\" data-ipsquote-contentclass=\"forums_Topic Köszönjük, ment a plusz 4180
SA-MP: Szerverfejlesztés / Ultimate_Trucking[ENG]« Dátum: 2011. november 13. - 21:54:04 »
Csúnya.
fos
4181
SA-MP: Szerverfejlesztés / Olajfúró Állomás« Dátum: 2011. november 13. - 21:52:53 »Idézetet írta: JaCk date=1320940489\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"13233\" data-ipsquote-contentclass=\"forums_Topic Ebbõl sok nem látszik,de hasonlit az én mapomra ... 4182
Off Telep / Doom multiplayer (Skulltag)« Dátum: 2011. november 13. - 21:51:12 »Idézetet írta: Zinthos date=1321215332\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"13165\" data-ipsquote-contentclass=\"forums_Topic Nem is tudtam, hogy van ilyen. Ha elmondom bátyámnak...XDD
4183
Hangszerek és előadók / Mit gondoltok errõl a zenéröl? :D« Dátum: 2011. november 13. - 21:47:18 »Idézetet írta: Koncz_Norbert date=1318712445\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"12536\" data-ipsquote-contentclass=\"forums_Topic 90% Meleg, 10% Zene.Tiszta buzik. Tiszta b*zik.
|