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 - sza23
Oldalak: 1 ... 12 13 [14] 15 16 ... 23
196
« Dátum: 2012. szeptember 30. - 14:09:00 »
Sziasztok. Van egy gondom nem lehet a MTA 1.1.1 Race ba több objectet lerakni miért van ez?
197
« Dátum: 2012. szeptember 29. - 15:16:35 »
a scriptet linkeld be
198
« Dátum: 2012. szeptember 29. - 11:27:48 »
nincs meg ez a parancs /autovesz Dupla hozzászólás automatikusan összefûzve. ( 2012. szeptember 29. - 11:40:48 )
annyi hogy odamegyek a pickuphoz és beirom /autovesz de semmi nem történik csak hogy kiadja ismeretlen parancs
199
« Dátum: 2012. szeptember 29. - 11:00:33 »
CMD:autovesz(playerid,params[]) { if(IsPlayerInRangeOfPoint(playerid, 10.0, P_X, P_Y, P_Z)) { if( pInfo[playerid][Kocsi] == 1 ) return SendClientMessage( playerid, 0xff0000AA, \"Neked már van autód!\" ); SetPlayerPos( playerid, P_X+1, P_Y+1, P_Z ); new dialText[512 + 1]; new tmp[64 + 1]; for( new i; i < sizeof JarmuAdat; i++ ) { format( tmp, sizeof tmp, \"Jármû: %s | Ára: $%d\", GetVehicleModelName(JarmuAdat[0]), JarmuAdat[1] ); strins( dialText, tmp, strlen(dialText) ); format( Mentes, 64, \"%s\", GetVehicleModelName(JarmuAdat[0]) ); } if( !strlen(dialText) ) return 1; ShowPlayerDialog( playerid, 1, DIALOG_STYLE_LIST, \"Autó Szalon\", dialText, \"Tovább\", \"Kilépés\" ); } return 1; } public OnPlayerStateChange( playerid, newstate, oldstate ) { if( newstate == PLAYER_STATE_DRIVER ) { if( GetPlayerVehicleID(playerid) != pInfo[playerid][KocsiID] ) { RemovePlayerFromVehicle( playerid ); SendClientMessage( playerid, 0xff0000AA, \"Ez a jármû nem a tiéd!\" ); } } return 1; }
200
« Dátum: 2012. szeptember 29. - 10:57:36 »
Sziasztok! Van egy Jármû vásárlás scriptem amit Fl0rian készített. Egy warning és egy error sincs benne mégis mikor odamegyek a pickuphoz beírom /autovesz akkor Unknown command Miért van ez? Script: #include <a_samp> #include <ZcMd> #define P_X 747.7859 #define P_Y -543.5135 #define P_Z 15.8657 #define KI_X 740.9020 #define KI_Y -540.5073 #define KI_Z 16.3500 #define KI_ROT 0 new bool: Privat[MAX_VEHICLES]; new IdeigID[MAX_PLAYERS]; new Pickup; new Mentes[MAX_VEHICLES][64 + 1]; new JarmuAdat[][] = { {400, 24999}, {401, 14999}, {404, 5999}, {405, 32999}, {410, 8999}, {422, 9999}, {426, 26999}, {436, 6999}, {445, 16999}, {462, 2999}, {468, 5999}, {475, 39999}, {478, 4999}, {527, 7999}, {529, 8999}, {536, 13999}, {543, 4999}, {566, 8999}, {576, 8999}, {585, 7999}, {605, 1299}, {604, 1299} }; enum pAdat { Kocsi, KocsiID } new pInfo[MAX_PLAYERS][pAdat]; enum vAdat { Float:xpos, Float:ypos, Float:zpos, Float:rot, model, color1, color2, plate[32 + 1] } new vInfo[MAX_VEHICLES][vAdat]; stock create( playerid ) { return fclose( fopen(plaFile(playerid), io_readwrite) ), 1; } stock LoadPlayerDAT( playerid ) { new dest[2][8 + 1]; new string[32 + 1]; new File: pfile = fopen(plaFile(playerid), io_read); if( pfile ) { fread( pfile, string ); split( string, dest, \',\' ); } pInfo[playerid][Kocsi] = strval(dest[0]); pInfo[playerid][KocsiID] = strval(dest[1]); return 1; } stock Save( playerid ) { new File: pfile = fopen(plaFile(playerid)); if( pfile ) { new pstring[32 + 1]; format( pstring, 32, \"%d,%d\", pInfo[playerid][Kocsi], pInfo[playerid][KocsiID] ); fwrite( pfile, pstring ); fclose( pfile ); } return 1; } stock plaFile(playerid) { new sz_pString[64 + 1]; format( sz_pString, 64, \"%s.dat\", playerName(playerid) ); return sz_pString; } stock playerName(playerid) { new sz_pName[MAX_PLAYER_NAME + 1]; GetPlayerName(playerid, sz_pName, sizeof(sz_pName) ); return sz_pName; } public OnPlayerConnect( playerid ) { if( fexist(plaFile(playerid)) ) { LoadPlayerDAT( playerid ); } else { create(playerid); } return 1; } public OnPlayerDisconnect( playerid, reason ) { #pragma unused reason Save(playerid); return 1; } public OnFilterScriptInit( ) { printf( \"[Fl0rian] Jármû vásárlás - BETÖLTVE\" ); KocsikBetolt( ); Pickup = CreatePickup( 1239, 1, P_X, P_Y, P_Z ); return 1; } public OnFilterScriptExit( ) { printf( \"[Fl0rian] Jármû vásárlás - LEÁLLÍTVA\" ); DestroyPickup( Pickup ); return 1; } CMD:autovesz(playerid,params[]) { if(IsPlayerInRangeOfPoint(playerid, 10.0, P_X, P_Y, P_Z)) { if( pInfo[playerid][Kocsi] == 1 ) return SendClientMessage( playerid, 0xff0000AA, \"Neked már van autód!\" ); SetPlayerPos( playerid, P_X+1, P_Y+1, P_Z ); new dialText[512 + 1]; new tmp[64 + 1]; for( new i; i < sizeof JarmuAdat; i++ ) { format( tmp, sizeof tmp, \"Jármû: %s | Ára: $%d\", GetVehicleModelName(JarmuAdat[0]), JarmuAdat[1] ); strins( dialText, tmp, strlen(dialText) ); format( Mentes, 64, \"%s\", GetVehicleModelName(JarmuAdat[0]) ); } if( !strlen(dialText) ) return 1; ShowPlayerDialog( playerid, 1, DIALOG_STYLE_LIST, \"Autó Szalon\", dialText, \"Tovább\", \"Kilépés\" ); } return 1; } public OnPlayerStateChange( playerid, newstate, oldstate ) { if( newstate == PLAYER_STATE_DRIVER ) { if( GetPlayerVehicleID(playerid) != pInfo[playerid][KocsiID] ) { RemovePlayerFromVehicle( playerid ); SendClientMessage( playerid, 0xff0000AA, \"Ez a jármû nem a tiéd!\" ); } } return 1; } public OnPlayerExitVehicle( playerid, vehicleid ) { if( GetPlayerState(playerid) == PLAYER_STATE_DRIVER && vehicleid == pInfo[playerid][Kocsi] ) { new vname[64 + 1]; format( vname, 64, \"%03d.dat\", vehicleid ); new File: vfile = fopen(vname); #define LustaVagyok(%0) vInfo[pInfo[playerid][KocsiID]][%0] if( vfile ) { new vstring[128 + 1]; format( vstring, 128, \"%f,%f,%f,%f,%d,%d,%d,%s\", LustaVagyok(xpos), LustaVagyok(ypos), LustaVagyok(zpos), LustaVagyok(rot), LustaVagyok(color1), LustaVagyok(color2), LustaVagyok(model), LustaVagyok(plate) ); fwrite( vfile, vstring ); fclose( vfile ); } } return 1; } public OnDialogResponse( playerid, dialogid, response, listitem, inputtext[] ) { switch( dialogid ) { case 1: { new veh; if( GetPlayerMoney(playerid) < JarmuAdat[listitem][1] ) return SendClientMessage( playerid, 0xff0000AA, \"Nincs pénzed erre a jármûre!\" ); IdeigID[playerid] = GetVehicleIDFromName( Mentes[listitem] ); new rand1 = random(255); new rand2 = random(255); veh = CreateVehicle( IdeigID[playerid], KI_X, KI_Y, KI_Z, KI_ROT, rand1, rand2, 0 ); pInfo[playerid][Kocsi] = 1; pInfo[playerid][KocsiID] = veh; vInfo[veh][xpos] = KI_X; vInfo[veh][ypos] = KI_Y; vInfo[veh][zpos] = KI_Z; vInfo[veh][rot] = KI_ROT; vInfo[veh][color1] = rand1; vInfo[veh][color2] = rand2; vInfo[veh][model] = IdeigID[playerid]; Privat[veh] = true; IdeigID[playerid] = -1; new vname[64 + 1]; format( vname, 64, \"%03d.dat\", veh ); new File: vfile = fopen(vname); #undef LustaVagyok #define LustaVagyok(%0) vInfo[veh][%0] if( vfile ) { new vstring[128 + 1]; format( vstring, 128, \"%f,%f,%f,%f,%d,%d,%d,%s\", LustaVagyok(xpos), LustaVagyok(ypos), LustaVagyok(zpos), LustaVagyok(rot), LustaVagyok(color1), LustaVagyok(color2), LustaVagyok(model), LustaVagyok(plate) ); fwrite( vfile, vstring ); fclose( vfile ); } SendClientMessage( playerid, 0x4a7affAA, \"Sikeresen megvetted a jármûvet!\" ); } } return 0; } CMD:stats(playerid, params[]) { new str[128 + 1]; format( str, sizeof(str), \"Kocsi ID: %d\", pInfo[playerid][KocsiID] ); SendClientMessage( playerid, -1, str ); return 1; } CMD:parkol(playerid, params[]) { if( !IsPlayerInAnyVehicle(playerid) ) return SendClientMessage( playerid, -1, \"Nem ülsz semmilyen jármûben\" ), 1; OnPlayerExitVehicle( playerid, GetPlayerVehicleID(playerid) ); return 1; } stock KocsikBetolt() { new string[256 + 1]; new dest[8][64 + 1]; for( new veh = 0; veh < MAX_VEHICLES; veh++ ) { new vname[64 + 1]; format( vname, 64, \"%03d.dat\", veh ); if( fexist(vname) ) { new File: vfile = fopen(vname, io_read); if( vfile ) { fread( vfile, string ); split( string, dest, \',\' ); } new vehi = CreateVehicle( strval(dest[6]), floatstr(dest[0]), floatstr(dest[1]), floatstr(dest[2]), floatstr(dest[3]), strval(dest[4]), strval(dest[5]), 0 ); SetVehicleNumberPlate( vehi, dest[7] ); vInfo[vehi][xpos] = floatstr(dest[0]); vInfo[vehi][ypos] = floatstr(dest[1]); vInfo[vehi][zpos] = floatstr(dest[2]); vInfo[vehi][rot] = floatstr(dest[3]); vInfo[vehi][color1] = strval(dest[4]); vInfo[vehi][color2] = strval(dest[5]); vInfo[vehi][model] = strval(dest[6]); format( vInfo[vehi][plate], 32, \"%s\", dest[7] ); printf( \"ID: %d jármû betöltve.\", vehi ); } } return 1; } stock split( const strsrc[], strdest[][], delimiter ) { new i, li; new aNum; new len; while(i <= strlen(strsrc)) { if(strsrc==delimiter || i==strlen(strsrc)) { len = strmid(strdest[aNum], strsrc, li, i, 128); strdest[aNum][len] = 0; li = i+1; aNum++; } i++; } return 1; } new VehicleNames[212][] = { {\"Landstalker\"},{\"Bravura\"},{\"Buffalo\"},{\"Linerunner\"},{\"Perennial\"},{\"Sentinel\"},{\"Dumper\"}, {\"Firetruck\"},{\"Trashmaster\"},{\"Stretch\"},{\"Manana\"},{\"Infernus\"},{\"Voodoo\"},{\"Pony\"},{\"Mule\"}, {\"Cheetah\"},{\"Ambulance\"},{\"Leviathan\"},{\"Moonbeam\"},{\"Esperanto\"},{\"Taxi\"},{\"Washington\"}, {\"Bobcat\"},{\"Mr Whoopee\"},{\"BF Injection\"},{\"Hunter\"},{\"Premier\"},{\"Enforcer\"},{\"Securicar\"}, {\"Banshee\"},{\"Predator\"},{\"Bus\"},{\"Rhino\"},{\"Barracks\"},{\"Hotknife\"},{\"Trailer 1\"},{\"Previon\"}, {\"Coach\"},{\"Cabbie\"},{\"Stallion\"},{\"Rumpo\"},{\"RC Bandit\"},{\"Romero\"},{\"Packer\"},{\"Monster\"}, {\"Admiral\"},{\"Squalo\"},{\"Seasparrow\"},{\"Pizzaboy\"},{\"Tram\"},{\"Trailer 2\"},{\"Turismo\"}, {\"Speeder\"},{\"Reefer\"},{\"Tropic\"},{\"Flatbed\"},{\"Yankee\"},{\"Caddy\"},{\"Solair\"},{\"Berkley\'s RC Van\"}, {\"Skimmer\"},{\"PCJ-600\"},{\"Faggio\"},{\"Freeway\"},{\"RC Baron\"},{\"RC Raider\"},{\"Glendale\"},{\"Oceanic\"}, {\"Sanchez\"},{\"Sparrow\"},{\"Patriot\"},{\"Quad\"},{\"Coastguard\"},{\"Dinghy\"},{\"Hermes\"},{\"Sabre\"}, {\"Rustler\"},{\"ZR-350\"},{\"Walton\"},{\"Regina\"},{\"Comet\"},{\"BMX\"},{\"Burrito\"},{\"Camper\"},{\"Marquis\"}, {\"Baggage\"},{\"Dozer\"},{\"Maverick\"},{\"News Chopper\"},{\"Rancher\"},{\"FBI Rancher\"},{\"Virgo\"},{\"Greenwood\"}, {\"Jetmax\"},{\"Hotring\"},{\"Sandking\"},{\"Blista Compact\"},{\"Police Maverick\"},{\"Boxville\"},{\"Benson\"}, {\"Mesa\"},{\"RC Goblin\"},{\"Hotring Racer A\"},{\"Hotring Racer B\"},{\"Bloodring Banger\"},{\"Rancher\"}, {\"Super GT\"},{\"Elegant\"},{\"Journey\"},{\"Bike\"},{\"Mountain Bike\"},{\"Beagle\"},{\"Cropdust\"},{\"Stunt\"}, {\"Tanker\"}, {\"Roadtrain\"},{\"Nebula\"},{\"Majestic\"},{\"Buccaneer\"},{\"Shamal\"},{\"Hydra\"},{\"FCR-900\"}, {\"NRG-500\"},{\"HPV1000\"},{\"Cement Truck\"},{\"Tow Truck\"},{\"Fortune\"},{\"Cadrona\"},{\"FBI Truck\"}, {\"Willard\"},{\"Forklift\"},{\"Tractor\"},{\"Combine\"},{\"Feltzer\"},{\"Remington\"},{\"Slamvan\"}, {\"Blade\"},{\"Freight\"},{\"Streak\"},{\"Vortex\"},{\"Vincent\"},{\"Bullet\"},{\"Clover\"},{\"Sadler\"}, {\"Firetruck LA\"},{\"Hustler\"},{\"Intruder\"},{\"Primo\"},{\"Cargobob\"},{\"Tampa\"},{\"Sunrise\"},{\"Merit\"}, {\"Utility\"},{\"Nevada\"},{\"Yosemite\"},{\"Windsor\"},{\"Monster A\"},{\"Monster B\"},{\"Uranus\"},{\"Jester\"}, {\"Sultan\"},{\"Stratum\"},{\"Elegy\"},{\"Raindance\"},{\"RC Tiger\"},{\"Flash\"},{\"Tahoma\"},{\"Savanna\"}, {\"Bandito\"},{\"Freight Flat\"},{\"Streak Carriage\"},{\"Kart\"},{\"Mower\"},{\"Duneride\"},{\"Sweeper\"}, {\"Broadway\"},{\"Tornado\"},{\"AT-400\"},{\"DFT-30\"},{\"Huntley\"},{\"Stafford\"},{\"BF-400\"},{\"Newsvan\"}, {\"Tug\"},{\"Trailer 3\"},{\"Emperor\"},{\"Wayfarer\"},{\"Euros\"},{\"Hotdog\"},{\"Club\"},{\"Freight Carriage\"}, {\"Trailer 3\"},{\"Andromada\"},{\"Dodo\"},{\"RC Cam\"},{\"Launch\"},{\"Police Car (LSPD)\"},{\"Police Car (SFPD)\"}, {\"Police Car (LVPD)\"},{\"Police Ranger\"},{\"Picador\"},{\"S.W.A.T. Van\"},{\"Alpha\"},{\"Phoenix\"},{\"Glendale\"}, {\"Sadler\"},{\"Luggage Trailer A\"},{\"Luggage Trailer B\"},{\"Stair Trailer\"},{\"Boxville\"},{\"Farm Plow\"}, {\"Utility Trailer\"} }; stock GetVehicleIDFromName( vehiclename[], type = 0 ) { new integer = INVALID_VEHICLE_ID; new talalat; if( type == 0 ) { for( new i = 0; i < 212; i++ ) { if( strfind(VehicleNames[0], vehiclename, true ) != -1 ) { integer = i + 400; talalat++; } } } else { for( new i = 0; i < 212; i++ ) { if( strcmp(VehicleNames[0], vehiclename, true ) == 0 ) { integer = i + 400; talalat++; } } } if( talalat > 1 ) { printf( \"Több találat a következõre: \'%s\'\", vehiclename ); return INVALID_VEHICLE_ID; } if( talalat == 0 ) { printf( \"Nincs találat a következõre: \'%s\'\", vehiclename ); } return integer; } stock GetVehicleModelName( modell ) { new STRING[64 + 1]; format( STRING, 64, \"%s\", VehicleNames[modell - 400][0] ); return STRING; } Válaszokat elõre is köszönöm
201
« Dátum: 2012. szeptember 28. - 15:27:58 »
Kössz
202
« Dátum: 2012. szeptember 28. - 13:23:26 »
Üdv. Gondoltam áthozok egy király modót amit még God\'Z War készített, remélem tetszik: Parancsok: /Admins /Hmenu /Vmenu /Bmenu /alien /laugh /minigun /Register /Buyh /Lockcar /Buybiz /weaponizer/relax /basketball /Gregister /Sellh /Unlockcar /Sellbiz /police /scared /getwet /Report /Unlockh /Cashbox /incred /sick /Login /Lockh /trashf /wave /Glogin /Enterh /removefun/spank /Changepass/Exith /taichi /Ask /crossarms /Ptele Animok:/Anims /Pgoto /Boost Telleportokért /teles Download: http://www.2shared.com/file/d91_iSSb/The_FreeRoameV2.html? Eredeti téma: http://forum.sa-mp.com/showthread.php?t=365631&highlight=Freeroam+God%27Z+WarJó szorakozást
203
« Dátum: 2012. szeptember 27. - 20:15:41 »
Nem müködik a Solidfiles( http://www.solidfiles.com),mikor le akarok tolteni valamit akkor várok egy percet és ezt irja: Ez a weboldal nem érhetõ el Megszakadt a kapcsolat a következõvel: sfcdn.in. Íme néhány javaslat: A weboldal újratöltése késõbb. Ellenõrizze az internetkapcsolatot. Indítsa újra a routert, modemet vagy más hálózati eszközt, amelyet használ. Próbálja meg hozzáadni a Google Chrome szoftvert mint engedélyezett programot tûzfala vagy víruskeresõ szoftvere beállításainál. Ha már engedélyezve van, kísérelje meg törölni az engedélyezett programok listájáról, majd újra hozzáadni. Ha proxyszervert használ, ellenõrizze a proxy beállításait, vagy kérdezze meg a hálózati rendszergazdájától, hogy a proxyszerver mûködik-e. Ha úgy gondolja, hogy nem használ proxyszervert, konfigurálja a proxyt: Nyissa meg a csavarkulcs menü > Beállítások > Speciális beállítások megjelenítése... > Proxybeállítások módosítása... > A helyi hálózat (LAN) beállításai elemét, és törölje a \"Proxykiszolgáló használata a helyi hálózaton\" jelölõnégyzetet. Hiba: 101 (net::ERR_CONNECTION_RESET): A kapcsolat alaphelyzetbe állt.
204
« Dátum: 2012. szeptember 27. - 19:42:00 »
hallod ha beteszem nem complinezi le Dupla hozzászólás automatikusan összefûzve. ( 2012. szeptember 27. - 19:44:50 )
A(z) Pawn Compiler library hibát észlelt, ezért leáll. A kellemetlenségekért elnézését kérjük.
205
« Dátum: 2012. szeptember 27. - 18:43:01 »
hát egyiksem  na mind egy azért kössz
206
« Dátum: 2012. szeptember 27. - 18:26:22 »
sziasztok! van egy jármüvételes script és 26 error van foreach.inc el pedig includeba nincs is beirva. nemtudjátok ,hogy mi lehet a baj? C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(0) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(2) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(3) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(4) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(5) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(6) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(7) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc( : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(9) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(10) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(11) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(12) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(13) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(14) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(15) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(16) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(17) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(18) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(19) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(20) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(21) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(22) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(23) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(24) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(25) : error 075: input line too long (after substitutions) C:\\Documents and Settings\\szabi\\Asztal\\SZERVER\\pawno\\include\\foreach.inc(26) : error 075: input line too long (after substitutions) Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 26 Errors.
a script: http://pastebin.com/VinKiatWelõre is köszönöm a válaszokat
207
« Dátum: 2012. szeptember 27. - 16:51:24 »
még mostis kiszállít a biciklibõl
208
« Dátum: 2012. szeptember 26. - 19:30:05 »
elkuldtem
Dupla hozzászólás automatikusan összefûzve. ( 2012. szeptember 27. - 14:54:48 )
megcsináltam,megy csak még mindig nem enged be a bicóba és még azt sem irja h nincs kulcsod ehhez a jármühöz,nincs valami ötleted?
209
« Dátum: 2012. szeptember 26. - 19:24:34 »
pff a 4461 est kétszer tettem be,kivettem de akkor eybe kivettett a pawnbol :weep: szoval nem complinezte le
210
« Dátum: 2012. szeptember 26. - 19:18:23 »
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger) // ez a 4461 es sor { //4462 if(kulcsok[playerid] == 1) { if(vehicleid == 481) return 1; else if(vehicleid == 509) return 1; else if(vehicleid == 510) return 1; } else if(kulcsok[playerid] == 0) { new Float:x,Float:y,Float:z; GetPlayerPos(playerid,x,y,z); SetPlayerPos(playerid,x,y,z+3); } return 1; }
Oldalak: 1 ... 12 13 [14] 15 16 ... 23
|