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 - Mambo
Oldalak: 1 ... 170 171 [172] 173 174 ... 272
2566
« Dátum: 2011. február 27. - 19:37:18 »
Stiricicica nekem is irj PM et lécives nekem is kéne hasonló féle..
Stricica Striciciiciciciicicicicicicicia
2567
« Dátum: 2011. február 27. - 19:26:36 »
Gyönyörû. Honnan lehet letölteni?
2568
« Dátum: 2011. február 27. - 18:42:41 »
\"# Bármilyen illegális (zene,film,bármilyen adat) anyagot közzétenni. Gondolok itt a torrent fájlokra és egyebekre.\"
2569
« Dátum: 2011. február 27. - 18:29:17 »
Bocs, duplaposzt de ezt nem hagyhattam ki! :shy:
2570
« Dátum: 2011. február 27. - 17:48:16 »
Mambo amugy szerintem ez a 3. feladat amit adtál ez epic fail. ::| Szerintem módosítsd a 3. feladatot, mert megcsinálhatnánk igy azt is, hogy megkeressük az eredeti szkriptet és összehasonlítom ezzel. ::|
a másik is a fórumról van... és ha már keresed, a hibákat is megtlaálod.
2571
« Dátum: 2011. február 27. - 17:18:44 »
Ám egy kérdés: Itt ugye 3 versenyzõ van. Mennyi jut tovább?
Reméltem késõbb teszed fel ezt a kérdést. ::| 2v3 fog tovább jutni, a döntõbe. Mármost, ha 2 jut tovább, 2 esik ki, ha három megy, akkor 1.
2573
« Dátum: 2011. február 27. - 17:10:03 »
(Szabad idõ == Amikor elérhetõ vagyok MSNen)
És amikor nem nyaggatlak a Megaszeróval
2574
« Dátum: 2011. február 27. - 17:06:03 »
2575
« Dátum: 2011. február 27. - 17:04:34 »
Magyar: You reached 380 points, so you achieved position 730 of 12207 on the ranking list You type 623 characters per minute You have 103 correct words and you have 5 wrong words
2576
« Dátum: 2011. február 27. - 17:01:13 »
You reached 229 points, so you achieved position 254147 of 1584837 on the ranking list You type 376 characters per minute You have 62 correct words and you have 5 wrong words
2577
« Dátum: 2011. február 27. - 16:57:51 »
3. feladat Csak a hibákat kell PM-ben elküldeni. // ########################################################################## // // // // * Author: ZeRo // // * Version: 1.0 // // * Started: 2010/03/18 // // * Relased: 2010/03/18 // // // // ########################################################################## // #include < a_samp > #define COLOR_GREEN 0x00FF00AA #define COLOR_RED 0xFF0000AA #define COLOR_YELLOW 0xFFFF00AA #define COLOR_CRANGE 0xFF9900AA #define DIALOG_VOTEKICK 5638 #define VOTENUM_TO_KICK 3 static szName[ MAX_PLAYER_NAME ]; static iPlayerVotes[MAX_PLAYERS ]; static iTotalVotes; static iVoteAbort; static bool: iVoted[ MAX_PLAYERS ]; public AbortVote( ); public OnFilterScriptInit( ) { print( \"\\n>> Z - Vote Script by ZeRo <<\" ); print( \">> -- | ON | -- <<\\n\" ); return 1; } public OnFilterScriptExit( ) { print( \"\\n>> Z - Vote Script by ZeRo <<\" ); print( \">> -- | OFF | -- <<\\n\" ); return 1; } public OnPlayerCommandText( playerid, cmdtext[ ] ) { static szStr[ 812 ]; if( strcmp( \"/votekick\", cmdtext, true ) == 0 ) { if( iVoted[ playerid ] ) { SendClientMessage( playerid, COLOR_RED, \"Már szavaztál! Várj egy kicsit!\" ); } else { if( !iTotalVotes ) { iVoteAbort = SetTimer( \"AbortVote\", 60000 * 2, false ); for( new index = 0; index < MAX_PLAYERS; ++index ) { if( IsPlayerConnected( index ) && !IsPlayerNPC( index ) ) { GetPlayerName( index, szName, sizeof szName ); if( !szStr[ 0 ] ) { format( szStr, sizeof szStr, \"%s\", szName ); } else { format( szStr, sizeof szStr, \"%s\\n%s\", szStr, szName ); } } } ShowPlayerDialog( playerid, DIALOG_VCTEKICK, DIALOG_STYLE_LIST, \"Kit akarsz kirúgni?\", szStr, \"Igen\", \"Kilép\" ); format( szStr, sizeof szStr, \"%c\", EOS); } return 1; } return 0; } public OnDialogResponse( playerid, dialogid, response, listitem, inputtext[ ] ) { static szRes[ 128 ], szNameEx[ MAX_PLAYER_NAME ]; if( dialogid == DIALOG_VOTEKICK ) { if( !response ) { SendClientMessage( playerid, COLOR_RED, \">> A szavazat nem lett elküldve! <<\" ); } else { iTotalVotes; iPlayerVotes[ listitem ]; iVoted[ playerid ] = true; GetPlayerName( listitem, szName, sizeof szName ); GetPlayerName( playerid, szNameEx, sizeof szNameEx ); if( iPlayerVotes[ listitem ] < VOTENUM_TO_KICK ) { format( szRes, sizeof szRes, \"%s szavazott %s kirúgására! Összesen: %i!\", szNameEx, szName, iPlayerVotes[ listitem ] ); } else { format( szRes, sizeof szRes, \"%s szavazott %s kirúgására! Szavazat elfogadva!\", szNameEx, szName, iPlayerVotes[ listitem ] ); Kick( listitem ) KillTimer( iVoteAbort ); iTotalVotes = 0; iVoted[ playerid ] = false; for( new index = 0; index < MAX_PLAYERS; ++index ) { if( IsPlayerConnected( index ) && !IsPlayerNPC( index ) ) { iPlayerVotes[ index ] = 0; } } } SendClientMessageToAl( COLOR_YELLOW, szRes ) } } return 1; } public AbortVote( ) { static iHighestVoted; for( new index = 0; index < MAX_PLAYERS; ++index ) { if( IsPlayerConnected( index ) && !IsPlayerNPC( index ) ) { if( iPlayerVotes[ index ] > iPlayerVotes[ iHighestVoted ] ) { iHighestVoted = index; } } } if( iPlayerVotes[ iHighestVoted ] >= VOTENUM_TO_KICK ) return; iTotalVotes = 0; for( new index = 0; index < MAX_PLAYERS; ++index ) { if( IsPlayerConnected( index ) && !IsPlayerNPC( index ) ) { iPlayerVotes[ index ] = 0; iVoted[ index ] = false; } } SendClientMessageToAll( COLOR_ORANGE \">> A szavazás érvénytelen volt! Próbáld újra! <<\" ); }
2578
« Dátum: 2011. február 27. - 16:56:08 »
3. feladat: Találd meg a scriptben a hibákat. CSAK a hibákat kell PM-ben elküldeni. Egységes feladat #include <a_samp> #define COLOR 0x1245FAAA enum pinfo { SpeedHax, HandBrake, Back }; new PlayerInfo[MAX_PLAYERS][pInfo]; new Text: SpeedMeter[MAX_PLAYERS]; public OnFilterScriptInit() { new playerid; SpeedMeter[playerid] = TextDrawCreate(555.0, 422.0,\" \"); TextDrawUseBox(SpeedMeter[playerid], 1); TextDrawBoxColor(SpeedMeter[playerid], 0x00000099); TextDrawTextSize(SpeedMeter[playerid], 635.0,440.0); TextDrawAlignment(SpeedMeter[playerid], 0); TextDrawBackgroundColor(SpeedMeter[playerid], 0x00000033); TextDrawFont(SpeedMeter[playerid], 2); TextDrawLetterSize(SpeedMeter[playerid], 0.399999,1.3); TextDrawColor(SpeedMeter[playerid], 0xffffff99); TextDrawSetProportional(SpeedMeter[playerid], 1); TextDrawSetShadow(SpeedMeter[playerid], 2); return 1; } public OnFilterScriptExit() { new playerid TextDrawHideForPlayer(playerid, SpeedMeter[playerid]); TextDrawDestroy(SpeedMeter[playerid]); return 1; } public OnPlayerConnect(playerid) { PlayerInfo[playerid][speedHax] = 0; PlayerInfo[playerid][HandBrake] = 0; PlayerInfo[playerid][back] = 0; return 1; } public OnPlayerDisconnect(playerid, reason) { PlayerInfo[playerid][speedHax] = 0; PlayerInfo[playerid][HandBrake] = 0; PlayerInfo[playerid][back] = 0; return 1; } public OnPlayerCommandText(playerid, cmdtext[]) { if(strcmp(cmdtext, \"/funcomm\", true) == 0) { ShowPlayerDialog(playerid, 1337, DIALOG_STYLE_LIST, \"Options\", \"Enable\\nDisable\", \"Select\", \"Cancel\"); return 1; } return 0; } public OnPlayerKeyStateChange(playerid, newkeys, oldkeys) { if(IsPlayerInAnyVehicle(playerid)) { if(PlayerInfo[playerid][speedHax] == 1) { if (newkeys & KEY_FIRE) { new Float:X, Float:Y, Float:Z; GetVehicleVelocity(GetPlayerVehicleID(playerid), X, Y, Z); SetVehicleVelocity(GetPlayerVehicleID(playerid), X * 2.0, Y * 2.0, Z * 2.0); } } if(PlayerInfo[playerid][HandBrake] == 1) { if(newkeys & KEY_DOWN) { SetVehicleVelocity(GetPlayerVehicleID(playerid), 0, 0, 0); } } if(PlayerInfo[playerid][back] == 1) { if(newkeys & 3) { GetBack(playerid); } } } return 1; } public OnPlayerStateChange(playerid, newstate, oldstate); { if(oldstate-1 && newstate) { TextDrawHideForPlayer(playerid, SpeedMeter[playerid]); } else if(newstate-1) { TextDrawShowForPlayer(playerid, SpeedMeter[playerid]); } return 1; } public OnPlayerUpdate(playerid) { if(!IsPlayerConnected(playerid)) return 0; if(!IsPlayerInAnyVehicle(playerid)) return 1; new Float:A, Float:B, Float:C; new string[64]; new Speed; Speed = floatround(1.61 * floatsqroot(floatabs(floatpower(A + B + C, 2))) * 100); GetVehicleVelocity(GetPlayerVehicleID(playerid), A, B, C); format(string, sizeof(string), \"%d KM/H\", Speed); TextDrawSetString(SpeedMeter[playerid], string); return 1; } public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]) { if(dialogid == 1337) { if(response) { if(listitem == 0) { ShowPlayerDialog(playerid, 1338, DIALOG_STYLE_LIST, \"Options\", \"SpeedHax\\nHandBrake\\nGetBack\", \"Enable\", \"Cancel\"); } if(listitem == 1) { ShowPlayerDialog(playerid, 1339, DIALOG_STYLE_LIST, \"Options\", \"SpeedHax\\nHandBrake\\nGetBack\", \"Disable\", \"Cancel\"); } } } if(dialogid == 1338) { if(response) { if(listitem == 0) { PlayerInfo[playerid][speedHax] = 1; SendClientMessage(playerid, COLOR, \"SpeedHack Bekapcsolva!\"); } if(listitem == 1) { PlayerInfo[playerid][HandBrake] = 1; SendClientMessage(playerid, COLOR, \"HandBrake Bekapcsolva!\"); } if(listitem == 2) { PlayerInfo[playerid][back] = 1; SendClientMessage(playerid, COLOR, \"GetBack Bekapcsolva!\"); } } } if(dialogid == 1339) { if(response) { if(listitem == 0) { PlayerInfo[playerid][speedHax] = 0; SendClientMessage(playerid, COLOR, \"SpeedHack Kikapcsolva!\"); } if(listitem == 1) { PlayerInfo[playerid][HandBrake] = 0; SendClientMessage(playerid, COLOR, \"HandBrake Kikapcsolva!\"); } if(listitem == 2) { PlayerInfo[playerid][back] = 0; SendClientMessage(playerid, COLOR, \"GetBack Kikapcsolva!\"); } } return 1; } stook GetBack(playerid) { new Float:X, Float:Y, Float:A, Float:Z; GetVehicleVelocity(GetPlayerVehicleID(playerid), X, Y, Z); SetVehicleVelocity(GetPlayerVehicleID(playerid), X-X * 2, Y-Y * 2, Z-Z * 2); GetVehicleZAngle(GetPlayerVehicleID(playerid), A); SetVehicleZAngle(GetPlayerVehicleID(playerid), A+180); SetCameraBehindPlayer(playerid); }
2579
« Dátum: 2011. február 27. - 14:30:08 »
2. Mi az a Dumper map? \
Egy pálya, ahol Dumperrel kell továbbjutni egy helyre. [/quote] Szóval ilyen akadályokon kell átmenni meg minden? [/quote] = monster parkour.
2580
« Dátum: 2011. február 27. - 14:28:47 »
1. Anticheat rendszerben mi ellen legyen anticheat? 2. Mi az a Dumper map? \
Pénz, DB, fegyverek, élet
Oldalak: 1 ... 170 171 [172] 173 174 ... 272
|