Jump to content

BaDB0yIonut

Membru
  • Posts

    23
  • Joined

  • Last visited

    Never

Everything posted by BaDB0yIonut

  1. Am si eu o problema imi cumpar masina personala si nu imi apare asta cu culorile nimic e ca si cum nu ar fi in gamemod aceasta linie , ea ar trebui sa apara atunci cand ai masina asa am facut eu if(car != 999) { format(coordsstring, sizeof(coordsstring), "| CarID: %d | Model: %s | Valoare: %d | Culoare: %d | Culoare2: %d | Incuiat: %d |", PlayerInfo[targetid][pCarKey],GetVehicleModelName(PlayerInfo[targetid][pCarKey]),price,color1,color2,lockv); SendClientMessage(playerid, 0xA39FC8AA, coordsstring); }
  2. Mai am o prob astea 2 merg alta e trb dupa restart cheia nu mi se salveaza la masina nu merge park pana nu dau /setstat sa setez cheia masini ce pot face
  3. Am si eu 2 probleme 1. la comanda /park poate da oricine park la oricemasina inclusiv cele de la pd fbi ng de pe strada if(strcmp(cmd, "/park", true) == 0) { if(IsPlayerConnected(playerid)) { if(IsPlayerInAnyVehicle(playerid)) { new car = GetPlayerVehicleID(playerid); GetPlayerName(playerid, sendername, sizeof(sendername)); if(car == PlayerInfo[playerid][pCarKey] || !strcmp(VehicleInfo[car][vOwner], sendername, true) || PlayerInfo[playerid][pAdmin] >= 4) { GetPlayerPos(playerid, VehicleInfo[car][vLocationx], VehicleInfo[car][vLocationy], VehicleInfo[car][vLocationz]); GetVehicleZAngle(car, VehicleInfo[car][vAngle]); DestroyVehicle(car); CreateVehicle(VehicleInfo[car][vModel],VehicleInfo[car][vLocationx], VehicleInfo[car][vLocationy], VehicleInfo[car][vLocationz],VehicleInfo[car][vAngle], VehicleInfo[car][vColorOne], VehicleInfo[car][vColorTwo],-1); SavePersonalVehicle(car); SendClientMessage(playerid, COLOR_WHITE, "Ti-ai parcat masina la pozitia actuala!"); return 1; } } else { SendClientMessage(playerid, COLOR_WHITE, "Nu esti in masina pentru a putea folosi comanda!"); return 1; } } else { SendClientMessage(playerid, COLOR_WHITE, "Nu esti conectat pentru a putea folosi comanda!"); return 1; } } 2. la comanda /sellmycar dau masina cuiva merge pret tot ma da jos din ea dar masina ramane tot a mea if(strcmp(cmd,"/sellmycar",true)==0) { if(IsPlayerConnected(playerid)) { if(!HasSellingLicense[playerid]) { return SendClientMessage(playerid, COLOR_WHITE, "Nu ai o aprobare pentru a vinde aceasta masina!"); } GetPlayerName(playerid, sendername, sizeof(sendername)); if(strcmp(VehicleInfo[GetPlayerVehicleID(playerid)][vOwner], sendername, true)) { SendClientMessage(playerid,COLOR_GREY,"Nu detii o masina!"); return 1; } if(!IsPlayerInAnyVehicle(playerid)) { SendClientMessage(playerid,COLOR_GREY,"Nu esti intr-o masina!"); return 1; } if(PlayerInfo[giveplayerid][pLevel] < 2) return SendClientMessage(playerid,COLOR_WHITE,"Nu poti vinde masini jucatorilor de level 1!"); tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_WHITE, "UTILIZARE: /sellmycar [playerid/nume] [pret]"); return 1; } //giveplayerid = strval(tmp); giveplayerid = ReturnUser(tmp); tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_WHITE, "UTILIZARE: /sellmycar [playerid/nume] [pret]"); return 1; } new money = strval(tmp); if(money < 0) { SendClientMessage(playerid, COLOR_GREY, " Pretul nu poate fi mai mic de 0!"); return 1; } if (IsPlayerConnected(giveplayerid)) { if(giveplayerid != INVALID_PLAYER_ID) { if (ProxDetectorS(8.0, playerid, giveplayerid)) { if(giveplayerid == playerid) { SendClientMessage(playerid, COLOR_GREY, " Nu iti poti vinde tie insuti!"); return 1; } if(PlayerInfo[giveplayerid][pCarKey] > 0) { SendClientMessage(playerid, COLOR_GREY, " Acel jucator are deja o masina!"); return 1; } GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer)); GetPlayerName(playerid, sendername, sizeof(sendername)); format(string, sizeof(string), "* I-ai propus lui %s sa-ti cumpere masina pentru $%s .", giveplayer, GroupDigit(money)); SendClientMessage(playerid, COLOR_LIGHTBLUE, string); format(string, sizeof(string), "* %s vrea sa-ti vanda masina pentru $%s, (tasteaza /accept car pentru a cumpara).", sendername, GroupDigit(money)); SendClientMessage(giveplayerid, COLOR_LIGHTBLUE, string); CarOffer[giveplayerid] = playerid; CarPrice[giveplayerid] = money; CarID[giveplayerid] = GetPlayerVehicleID(playerid); } else { SendClientMessage(playerid, COLOR_GREY, " Acel jucator nu se afla in preajma ta!"); } } } else { SendClientMessage(playerid, COLOR_GREY, " Nume/ID incorect !"); return 1; } } return 1; } if(strcmp(x_job,"car",true) == 0) { if(CarOffer[playerid] < 999) { if(IsPlayerConnected(CarOffer[playerid])) { if(GetPlayerCash(playerid) > CarPrice[playerid]) { if(IsPlayerInVehicle(CarOffer[playerid], CarID[playerid])) { if(PlayerInfo[playerid][pJob] == 10) { GetPlayerName(CarOffer[playerid], giveplayer, sizeof(giveplayer)); GetPlayerName(playerid, sendername, sizeof(sendername)); new points; PlayerInfo[CarOffer[playerid]][pCarSkill] ++; if(PlayerInfo[CarOffer[playerid]][pCarSkill] == 50) { SendClientMessage(CarOffer[playerid], COLOR_YELLOW, "* Abilitatile tale de comerciant auto sunt acum de nivelul 2, jucatorii care cumpara masini de la tine le pot solicita mai repede."); } else if(PlayerInfo[CarOffer[playerid]][pCarSkill] == 100) { SendClientMessage(CarOffer[playerid], COLOR_YELLOW, "* Abilitatile tale de comerciant auto sunt acum de nivelul 3, jucatorii care cumpara masini de la tine le pot solicita mai repede."); } else if(PlayerInfo[CarOffer[playerid]][pCarSkill] == 200) { SendClientMessage(CarOffer[playerid], COLOR_YELLOW, "* Abilitatile tale de comerciant auto sunt acum de nivelul 4, jucatorii care cumpara masini de la tine le pot solicita mai repede."); } else if(PlayerInfo[CarOffer[playerid]][pCarSkill] == 400) { SendClientMessage(CarOffer[playerid], COLOR_YELLOW, "* Abilitatile tale de comerciant auto sunt acum de nivelul 5, jucatorii care cumpara masini de la tine le pot solicita mai repede."); } new level = PlayerInfo[CarOffer[playerid]][pCarSkill]; if(level >= 0 && level <= 50) { points = 1; } else if(level >= 51 && level <= 100) { points = 2; } else if(level >= 101 && level <= 200) { points = 3; } else if(level >= 201 && level <= 400) { points = 4; } else if(level >= 401) { points = 7; } format(string, sizeof(string), "* Ai cumparat o masina la pretul de %s$, de la comerciantul %s.",GroupDigit(CarPrice[playerid]),giveplayer,points); SendClientMessage(playerid, COLOR_LIGHTBLUE, string); format(string, sizeof(string), "* Ai vandut masina lui %s pentru %s$.",sendername,GroupDigit(CarPrice[playerid]),points); SendClientMessage(CarOffer[playerid], COLOR_LIGHTBLUE, string); //PlayerInfo[CarOffer[playerid]][pPayCheck] += CarPrice[playerid]; GivePlayerCash(CarOffer[playerid], CarPrice[playerid]); GivePlayerCash(playerid, -CarPrice[playerid]); RemovePlayerFromVehicle(CarOffer[playerid]); //CarCalls[playerid] = points; CarOffer[playerid] = 999; CarPrice[playerid] = 0; return 1; } else if(PlayerInfo[playerid][pCarKey] == 0) { GetPlayerName(CarOffer[playerid], giveplayer, sizeof(giveplayer)); GetPlayerName(playerid, sendername, sizeof(sendername)); format(string, sizeof(string), "* Ai cumparat o masina la pretul de %s$, de la %s.",GroupDigit(CarPrice[playerid]),giveplayer); SendClientMessage(playerid, COLOR_LIGHTBLUE, string); format(string, sizeof(string), "* Ai vandut masina lui %s pentru %s$.",sendername,GroupDigit(CarPrice[playerid])); SendClientMessage(CarOffer[playerid], COLOR_LIGHTBLUE, string); //PlayerInfo[CarOffer[playerid]][pPayCheck] += CarPrice[playerid]; GivePlayerCash(CarOffer[playerid], CarPrice[playerid]); GivePlayerCash(playerid, -CarPrice[playerid]); RemovePlayerFromVehicle(CarOffer[playerid]); PlayerInfo[playerid][pCarKey] = 0; //CarCalls[playerid] = points; CarOffer[playerid] = 999; CarPrice[playerid] = 0; strmid(VehicleInfo[CarID[playerid]][vOwner], sendername, 0, strlen(sendername), 255); } } else { SendClientMessage(playerid, COLOR_GREY, "Comerciantul nu se afla in masina oferita!"); return 1; } } else { SendClientMessage(playerid, COLOR_GREY, "Nu iti permiti masina!"); return 1; } } return 1; } else { SendClientMessage(playerid, COLOR_GREY, "Nimeni nu s-a oferit sa cumpere masina!"); return 1; } } Cine ma poate ajuta multumesc mult
  4. Am si eu o prob dc imi apare cand dau /stats unknown si nu imi apare asta deloc e ca si cum nu ar fi if(PlayerInfo[targetid][pCarKey] < 0) { format(coordsstring, sizeof(coordsstring), "CheieMasina:[%d] ModelMasina:[%s]", PlayerInfo[targetid][pCarKey],GetVehicleModelName(PlayerInfo[playerid][pCarKey])); SendClientMessage(playerid, 0xA39FC8AA, coordsstring); }
  5. ma poate ajuta si pe mine cineva
  6. Am si eu o problema la masinile personale, nu mi se salveaza in baza de date mysql, uitati comenzile de creat, si cumparat, daca nu, moody_samp sau cum pot sa le fac din mysql, sa nu se mai salveze in baza de date, si sa se salveze in scriptfiles. if(strcmp(cmd, "/createpersonalcar", true) == 0) { if(IsPlayerConnected(playerid)) { if (PlayerInfo[playerid][pAdmin] < 5) { SendClientMessage(playerid, COLOR_GRAD1, ADMIN_TEXT); return 1; } if (CreatedCar != 0) { SendClientMessage(playerid, COLOR_LIGHTRED, "Exista o masina spawnata care nu este salvata in baza de date!Sterge-o mai intai!"); return 1; } tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_WHITE, "UTILIZARE: /createpersonalcar [carid/carname] [color1] [color2] [pret]"); return 1; } new bool:foundletter = false; for(new i; i < strlen(tmp); i++) if(!IsDigit(tmp)) { foundletter = true; break; } new car,carname[20]; if(!foundletter) // carid { car = strval(tmp); if(car < 400 || car > 611) { SendClientMessage(playerid, COLOR_GREY, "Modelul vehiculului trebuie sa fie intre 400 si 611 !"); return 1; } } else // carname { if(!strcmp(tmp,"Landstalker",true)) car = 400; else if(!strcmp(tmp,"Bravura",true)) car = 401; else if(!strcmp(tmp,"Buffalo",true)) car = 402; else if(!strcmp(tmp,"Linerunner",true)) car = 403; else if(!strcmp(tmp,"Pereniel",true)) car = 404; else if(!strcmp(tmp,"Sentinel",true)) car = 405; else if(!strcmp(tmp,"Dumper",true)) car = 406; else if(!strcmp(tmp,"Firetruck1",true)) car = 407; else if(!strcmp(tmp,"Trashmaster",true)) car = 408; else if(!strcmp(tmp,"Stretch",true)) car = 409; else if(!strcmp(tmp,"Manana",true)) car = 410; else if(!strcmp(tmp,"Infernus",true)) car = 411; else if(!strcmp(tmp,"Voodoo",true)) car = 412; else if(!strcmp(tmp,"Pony",true)) car = 413; else if(!strcmp(tmp,"Mule",true)) car = 414; else if(!strcmp(tmp,"Cheetah",true)) car = 415; else if(!strcmp(tmp,"Ambulance",true)) car = 416; else if(!strcmp(tmp,"Leviathan",true)) car = 417; else if(!strcmp(tmp,"Moonbeam",true)) car = 418; else if(!strcmp(tmp,"Esperanto",true)) car = 419; else if(!strcmp(tmp,"Taxi",true)) car = 420; else if(!strcmp(tmp,"Washington",true)) car = 421; else if(!strcmp(tmp,"Bobcat",true)) car = 422; else if(!strcmp(tmp,"MrWhoopee",true)) car = 423; else if(!strcmp(tmp,"BFInjection",true)) car = 424; else if(!strcmp(tmp,"Hunter",true)) car = 425; else if(!strcmp(tmp,"Premier",true)) car = 426; else if(!strcmp(tmp,"Enforcer",true)) car = 427; else if(!strcmp(tmp,"Securicar",true)) car = 428; else if(!strcmp(tmp,"Banshee",true)) car = 429; else if(!strcmp(tmp,"Predator",true)) car = 430; else if(!strcmp(tmp,"Bus",true)) car = 431; else if(!strcmp(tmp,"Rhino",true)) car = 432; else if(!strcmp(tmp,"Barracks",true)) car = 433; else if(!strcmp(tmp,"Hotknife",true)) car = 434; else if(!strcmp(tmp,"Trailer1",true)) car = 435; else if(!strcmp(tmp,"Previon",true)) car = 436; else if(!strcmp(tmp,"Coach",true)) car = 437; else if(!strcmp(tmp,"Cabbie",true)) car = 438; else if(!strcmp(tmp,"Stallion",true)) car = 439; else if(!strcmp(tmp,"Rumpo",true)) car = 440; else if(!strcmp(tmp,"RCBandit",true)) car = 441; else if(!strcmp(tmp,"Romero",true)) car = 442; else if(!strcmp(tmp,"Packer",true)) car = 443; else if(!strcmp(tmp,"MonsterTruck1",true)) car = 444; else if(!strcmp(tmp,"Admiral",true)) car = 445; else if(!strcmp(tmp,"Squalo",true)) car = 446; else if(!strcmp(tmp,"Seasparrow",true)) car = 447; else if(!strcmp(tmp,"Pizzaboy",true)) car = 448; else if(!strcmp(tmp,"Tram",true)) car = 449; else if(!strcmp(tmp,"Trailer2",true)) car = 450; else if(!strcmp(tmp,"Turismo",true)) car = 451; else if(!strcmp(tmp,"Speeder",true)) car = 452; else if(!strcmp(tmp,"Reefer",true)) car = 453; else if(!strcmp(tmp,"Tropic",true)) car = 454; else if(!strcmp(tmp,"Flatbed",true)) car = 455; else if(!strcmp(tmp,"Yankee",true)) car = 456; else if(!strcmp(tmp,"Caddy",true)) car = 457; else if(!strcmp(tmp,"Solair",true)) car = 458; else if(!strcmp(tmp,"Berkley",true)) car = 459; else if(!strcmp(tmp,"Skimmer",true)) car = 460; else if(!strcmp(tmp,"PCJ-600",true) || !strcmp(tmp,"PCJ600",true)) car = 461; else if(!strcmp(tmp,"Faggio",true)) car = 462; else if(!strcmp(tmp,"Freeway",true)) car = 463; else if(!strcmp(tmp,"RCBaron",true)) car = 464; else if(!strcmp(tmp,"RCRaider",true)) car = 465; else if(!strcmp(tmp,"Glendale",true)) car = 466; else if(!strcmp(tmp,"Oceanic",true)) car = 467; else if(!strcmp(tmp,"Sanchez",true)) car = 468; else if(!strcmp(tmp,"Sparrow",true)) car = 469; else if(!strcmp(tmp,"Patriot",true)) car = 470; else if(!strcmp(tmp,"Quad",true) || !strcmp(tmp,"ATV",true)) car = 471; else if(!strcmp(tmp,"Coastguard",true)) car = 472; else if(!strcmp(tmp,"Dinghy",true)) car = 473; else if(!strcmp(tmp,"Hermes",true)) car = 474; else if(!strcmp(tmp,"Sabre",true)) car = 475; else if(!strcmp(tmp,"Rustler",true)) car = 476; else if(!strcmp(tmp,"ZR-350",true) || !strcmp(tmp,"ZR350",true)) car = 477; else if(!strcmp(tmp,"Walton",true)) car = 478; else if(!strcmp(tmp,"Regina",true)) car = 479; else if(!strcmp(tmp,"Comet",true)) car = 480; else if(!strcmp(tmp,"BMX",true)) car = 481; else if(!strcmp(tmp,"Burrito",true)) car = 482; else if(!strcmp(tmp,"Camper",true)) car = 483; else if(!strcmp(tmp,"Marquis",true)) car = 484; else if(!strcmp(tmp,"Baggage",true)) car = 485; else if(!strcmp(tmp,"Dozer",true)) car = 486; else if(!strcmp(tmp,"Maverick",true)) car = 487; else if(!strcmp(tmp,"NewsChopper",true) || !strcmp(tmp,"NewsMaverick",true)) car = 488; else if(!strcmp(tmp,"Rancher1",true)) car = 489; else if(!strcmp(tmp,"FBIRancher",true)) car = 490; else if(!strcmp(tmp,"Virgo",true)) car = 491; else if(!strcmp(tmp,"Greenwood",true)) car = 492; else if(!strcmp(tmp,"Jetmax",true)) car = 493; else if(!strcmp(tmp,"Hotring1",true)) car = 494; else if(!strcmp(tmp,"Sandking",true)) car = 495; else if(!strcmp(tmp,"BlistaCompact",true)) car = 496; else if(!strcmp(tmp,"PoliceMaverick",true)) car = 497; else if(!strcmp(tmp,"Boxville",true)) car = 498; else if(!strcmp(tmp,"Benson",true)) car = 499; else if(!strcmp(tmp,"Mesa",true)) car = 500; else if(!strcmp(tmp,"RCGoblin",true)) car = 501; else if(!strcmp(tmp,"Hotring2",true)) car = 502; else if(!strcmp(tmp,"Hotring3",true)) car = 503; else if(!strcmp(tmp,"BloodringBanger",true)) car = 504; else if(!strcmp(tmp,"Rancher2",true)) car = 505; else if(!strcmp(tmp,"SuperGT",true)) car = 506; else if(!strcmp(tmp,"Elegant",true)) car = 507; else if(!strcmp(tmp,"Journey",true)) car = 508; else if(!strcmp(tmp,"Bike",true)) car = 509; else if(!strcmp(tmp,"MountainBike",true)) car = 510; else if(!strcmp(tmp,"Beagle",true)) car = 511; else if(!strcmp(tmp,"Cropdust",true)) car = 512; else if(!strcmp(tmp,"Stunt",true)) car = 513; else if(!strcmp(tmp,"Tanker",true)) car = 514; else if(!strcmp(tmp,"RoadTrain",true)) car = 515; else if(!strcmp(tmp,"Nebula",true)) car = 516; else if(!strcmp(tmp,"Majestic",true)) car = 517; else if(!strcmp(tmp,"Buccaneer",true)) car = 518; else if(!strcmp(tmp,"Shamal",true)) car = 519; else if(!strcmp(tmp,"Hydra",true)) car = 520; else if(!strcmp(tmp,"FCR-900",true) || !strcmp(tmp,"FCR900",true)) car = 521; else if(!strcmp(tmp,"NRG-500",true) || !strcmp(tmp,"NRG500",true)) car = 522; else if(!strcmp(tmp,"HPV-1000",true) || !strcmp(tmp,"HPV1000",true)) car = 523; else if(!strcmp(tmp,"CementTruck",true)) car = 524; else if(!strcmp(tmp,"TowTruck",true)) car = 525; else if(!strcmp(tmp,"Fortune",true)) car = 526; else if(!strcmp(tmp,"Cadrona",true)) car = 527; else if(!strcmp(tmp,"FBITruck",true)) car = 528; else if(!strcmp(tmp,"Willard",true)) car = 529; else if(!strcmp(tmp,"Forklift",true)) car = 530; else if(!strcmp(tmp,"Tractor",true)) car = 531; else if(!strcmp(tmp,"Combine",true)) car = 532; else if(!strcmp(tmp,"Feltzer",true)) car = 533; else if(!strcmp(tmp,"Remington",true)) car = 534; else if(!strcmp(tmp,"Slamvan",true)) car = 535; else if(!strcmp(tmp,"Blade",true)) car = 536; else if(!strcmp(tmp,"Freight",true)) car = 537; else if(!strcmp(tmp,"Streak",true)) car = 538; else if(!strcmp(tmp,"Vortex",true)) car = 539; else if(!strcmp(tmp,"Vincent",true)) car = 540; else if(!strcmp(tmp,"Bullet",true)) car = 541; else if(!strcmp(tmp,"Clover",true)) car = 542; else if(!strcmp(tmp,"Sadler",true)) car = 543; else if(!strcmp(tmp,"Firetruck2",true)) car = 544; else if(!strcmp(tmp,"Hustler",true)) car = 545; else if(!strcmp(tmp,"Intruder",true)) car = 546; else if(!strcmp(tmp,"Primo",true)) car = 547; else if(!strcmp(tmp,"Cargobob",true)) car = 548; else if(!strcmp(tmp,"Tampa",true)) car = 549; else if(!strcmp(tmp,"Sunrise",true)) car = 550; else if(!strcmp(tmp,"Merit",true)) car = 551; else if(!strcmp(tmp,"Utility",true) || !strcmp(tmp,"UtilityVan",true)) car = 552; else if(!strcmp(tmp,"Nevada",true)) car = 553; else if(!strcmp(tmp,"Yosemite",true)) car = 554; else if(!strcmp(tmp,"Windsor",true)) car = 555; else if(!strcmp(tmp,"MonsterTruck2",true)) car = 556; else if(!strcmp(tmp,"MonsterTruck3",true)) car = 557; else if(!strcmp(tmp,"Uranus",true)) car = 558; else if(!strcmp(tmp,"Jester",true)) car = 559; else if(!strcmp(tmp,"Sultan",true)) car = 560; else if(!strcmp(tmp,"Stratum",true)) car = 561; else if(!strcmp(tmp,"Elegy",true)) car = 562; else if(!strcmp(tmp,"Raindance",true)) car = 563; else if(!strcmp(tmp,"RCTiger",true)) car = 564; else if(!strcmp(tmp,"Flash",true)) car = 565; else if(!strcmp(tmp,"Tahoma",true)) car = 566; else if(!strcmp(tmp,"Savanna",true)) car = 567; else if(!strcmp(tmp,"Bandito",true)) car = 568; else if(!strcmp(tmp,"Freight",true)) car = 569; else if(!strcmp(tmp,"Trailer3",true)) car = 570; else if(!strcmp(tmp,"Kart",true)) car = 571; else if(!strcmp(tmp,"Mower",true)) car = 572; else if(!strcmp(tmp,"Duneride",true)) car = 573; else if(!strcmp(tmp,"Sweeper",true)) car = 574; else if(!strcmp(tmp,"Broadway",true)) car = 575; else if(!strcmp(tmp,"Tornado",true)) car = 576; else if(!strcmp(tmp,"AT-400",true) || !strcmp(tmp,"AT400",true)) car = 577; else if(!strcmp(tmp,"DFT-30",true) || !strcmp(tmp,"DFT30",true)) car = 578; else if(!strcmp(tmp,"Huntley",true)) car = 579; else if(!strcmp(tmp,"Stafford",true)) car = 580; else if(!strcmp(tmp,"BF-400",true) || !strcmp(tmp,"BF400",true)) car = 581; else if(!strcmp(tmp,"Newsvan",true)) car = 582; else if(!strcmp(tmp,"Tug",true)) car = 583; else if(!strcmp(tmp,"Trailer4",true)) car = 584; else if(!strcmp(tmp,"Emperor",true)) car = 585; else if(!strcmp(tmp,"Wayfarer",true)) car = 586; else if(!strcmp(tmp,"Euros",true)) car = 587; else if(!strcmp(tmp,"Hotdog",true)) car = 588; else if(!strcmp(tmp,"Club",true)) car = 589; else if(!strcmp(tmp,"Trailer5",true)) car = 590; else if(!strcmp(tmp,"Trailer6",true)) car = 591; else if(!strcmp(tmp,"Andromada",true)) car = 592; else if(!strcmp(tmp,"Dodo",true)) car = 593; else if(!strcmp(tmp,"RCCam",true)) car = 594; else if(!strcmp(tmp,"Launch",true)) car = 595; else if(!strcmp(tmp,"PoliceCarLSPD",true) || !strcmp(tmp,"PoliceCarLS",true)) car = 596; else if(!strcmp(tmp,"PoliceCarSFPD",true) || !strcmp(tmp,"PoliceCarSF",true)) car = 597; else if(!strcmp(tmp,"PoliceCarLVPD",true) || !strcmp(tmp,"PoliceCarLV",true)) car = 598; else if(!strcmp(tmp,"PoliceRanger",true)) car = 599; else if(!strcmp(tmp,"Picador",true)) car = 600; else if(!strcmp(tmp,"S.W.A.T.",true) || !strcmp(tmp,"SWAT",true) || !strcmp(tmp,"SWATVAN",true)) car = 601; else if(!strcmp(tmp,"Alpha",true)) car = 602; else if(!strcmp(tmp,"Phoenix",true)) car = 603; else if(!strcmp(tmp,"Glendale",true)) car = 604; else if(!strcmp(tmp,"Sadler",true)) car = 605; else if(!strcmp(tmp,"LuggageTrailer1",true)) car = 606; else if(!strcmp(tmp,"LuggageTrailer2",true)) car = 607; else if(!strcmp(tmp,"StairTrailer",true)) car = 608; else if(!strcmp(tmp,"Boxville",true)) car = 609; else if(!strcmp(tmp,"FarmPlow",true)) car = 610; else if(!strcmp(tmp,"UtilityTrailer",true)) car = 611; else { SendClientMessage(playerid,0xCE3E3EAA,"[EROARE]: Nume de vehicul gresit !"); SendClientMessage(playerid,0x80ABEBAA,"[ATENTIE]: Numele la UNELE vehicule au fost schimbate ! Ca de exemplu:"); SendClientMessage(playerid,0xBCEEB9AA,"Trailer1 | Trailer2 | Trailer3 | Trailer4 | Trailer5 | Trailer6 | RCCam | RCBandit | RCRaider | RCBaron | RCGoblin | RCTiger"); SendClientMessage(playerid,0x97D893AA,"Firetruck1 | Firetruck2 | Rancher1 | Rancher2 | Hotring1 | Hotring2 | Hotring3 | BloodringBanger | Utility | MrWhoopee"); SendClientMessage(playerid,0x7ED078AA,"Berkley | StairTrailer | Boxville | FarmPlow | UtilityTrailer | Monstertruck1 | Monstertruck2 | Monstertruck3"); SendClientMessage(playerid,0x60CA59AA,"PoliceCarLS | PoliceCarSF | PoliceCarLV | PoliceRanger | Swat | LuggageTrailer1 | LuggageTrailer2"); return true; } } strmid(carname,tmp,0,strlen(tmp)); tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { if(strlen(carname) && foundletter) SendFormattedMessage(playerid, COLOR_GRAD2, "UTILIZARE: /createpersonalcar %s [color1] [color2] [pret]",carname); else SendFormattedMessage(playerid, COLOR_GRAD2, "UTILIZARE: /createpersonalcar %s [color1] [color2] [pret]",GetVehicleModelName(car)); return 1; } new color1; color1 = strval(tmp); if(color1 < -1 || color1 > 256) { SendClientMessage(playerid, COLOR_GREY, "Prima culoare a vehiculului trebuie sa fie intre 0 si 256 !"); return 1; } tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { if(strlen(carname) && foundletter) SendFormattedMessage(playerid, COLOR_GRAD3, "UTILIZARE: /createpersonalcar %s [color1] [color2] [pret]",carname); else SendFormattedMessage(playerid, COLOR_GRAD3, "UTILIZARE: /createpersonalcar %s [color1] [color2] [pret]",GetVehicleModelName(car)); return 1; } new color2; color2 = strval(tmp); if(color2 < -1 || color2 > 256) { SendClientMessage(playerid, COLOR_GREY, "A doua culoare a vehiculului trebuie sa fie intre 0 si 256 !"); return 1; } tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { if(strlen(carname) && foundletter) SendFormattedMessage(playerid, COLOR_GRAD3, "UTILIZARE: /createpersonalcar %s [color1] [color2] [PRET]",carname); else SendFormattedMessage(playerid, COLOR_GRAD3, "UTILIZARE: /createpersonalcar %s [color1] [color2] [PRET]",GetVehicleModelName(car)); return 1; } new price; price = strval(tmp); if(price < 0) { SendClientMessage(playerid, COLOR_GREY, "Pretul trebuie sa fie mai mare decat 0"); return 1; } new Float:X,Float:Y,Float:Z,Float:A; GetPlayerPos(playerid, X,Y,Z); GetPlayerFacingAngle(playerid,A); new carid = CreateVehicle(car, X,Y,Z,A, color1, color2, -1); LinkVehicleToInterior(carid,GetPlayerInterior(play erid)); totalcars++; VehicleInfo[carid][vID] = totalcars; VehicleInfo[carid][vModel] = car; VehicleInfo[carid][vLocationx] = X; VehicleInfo[carid][vLocationy] = Y; VehicleInfo[carid][vLocationz] = Z; VehicleInfo[carid][vAngle] = A; VehicleInfo[carid][vColorOne] = color1; VehicleInfo[carid][vColorTwo] = color2; memcpy(VehicleInfo[carid][vOwner], "Nimeni", 0, MAX_PLAYER_NAME*8, MAX_PLAYER_NAME*; VehicleInfo[carid][vOwned] = 0; VehicleInfo[carid][vLock] = 0; // Locked VehicleInfo[carid][vPrice] = price; InsertPersonalVehicle(carid); Gas[carid] = GetLiters(carid); format(string, sizeof(string), "Ai creat un %s!Poate fi cumparat cu /buycar!",GetVehicleModelName(car)); SendClientMessage(playerid, 0x1A94EEFF, string); GetPlayerName(playerid,sendername,sizeof(sendernam e)); format(string,sizeof(string),"Admin %s spawned personal car id %d , model %s.",sendername,carid,GetVehicleModelName(car)); AdminLog(string); } return 1; } if(strcmp(cmd, "/buycar", true) == 0) { if(IsPlayerConnected(playerid)) { if(IsPlayerInAnyVehicle(playerid)) { GetPlayerName(playerid, sendername,sizeof(sendername)); if(strfind(sendername, "[AOD]", true) != -1) { SendClientMessage(playerid, 0xAD7967FF,"Nu poti cumpara o afacere in timp ce esti '[AOD]'."); return 1; } new car = GetPlayerVehicleID(playerid); if(VehicleInfo[car][vPrice] != 0 && VehicleInfo[car][vModel] != 0 && VehicleInfo[car][vOwned] == 0) { GetPlayerName(playerid, sendername, sizeof(sendername)); memcpy(VehicleInfo[car][vOwner], sendername, 0, MAX_PLAYER_NAME*8, MAX_PLAYER_NAME*; VehicleInfo[car][vOwned] = 1; PlayerInfo[playerid][pCarKey] = car; GivePlayerCash(playerid, -VehicleInfo[car][vPrice]); //printf("%d - %d - %d", VehicleInfo[car][vModel], VehicleInfo[car][vPrice], VehicleInfo[car][vOwned]); format(string, sizeof(string), "Felicitari! Ai cumparat acest %s pentru suma de %d!", GetVehicleModelName(car), VehicleInfo[car][vPrice]); SendClientMessage(playerid, COLOR_LIGHTBLUE, string); SavePersonalVehicle(car); return 1; } else { SendClientMessage(playerid, COLOR_WHITE, "Aceasta masina nu este de vanzare sau are deja un proprietar!"); return 1; } } } }
  7. este gmul linkmania mai exact si in baza de date trebuie sa fac tabelu si nsh atat tot multumesc celor ce ma pot ajuta
  8. Am si eu o problema cu masinile pers nu imi raman dupa rr pe server o creez din comanda o cumpar apare dupa a cui e tot si dupa rr dispare servarul ruleaza mysql in baza de date trebuie adaugat ceva ca nu stiu cine ma poate ajuta?
  9. uitati ce imi da [10:20:34] MySQL Debugging activated (01/07/13) [10:20:34] --------------------------- [10:20:34] [10:20:34] >> mysql_ping( Connection handle: 1 ) [10:20:34] CMySQLHandler::Ping() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_close( Connection handle: 1 ) [10:20:34] CMySQLHandler::~CMySQLHandler() - deconstructor called. [10:20:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead) [10:20:34] CMySQLHandler::Disconnect() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_connect( ) [10:20:34] CMySQLHandler::CMySQLHandler() - constructor called. [10:20:34] CMySQLHandler::CMySQLHandler() - Connecting to "195.225.59.3" | DB: "ultracs_lands" | Username: "ultracs_lands" ... [10:20:34] CMySQLHandler::Connect() - Access denied for user 'ultracs_lands'@'gamecp.ro' (using password: YES) (Error ID: 1045) [10:20:34] >> mysql_ping( Connection handle: 1 ) [10:20:34] CMySQLHandler::Ping() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_connect( ) [10:20:34] CMySQLHandler::Connect() - Access denied for user 'ultracs_lands'@'gamecp.ro' (using password: YES) (Error ID: 1045) [10:20:34] >> mysql_ping( Connection handle: 1 ) [10:20:34] CMySQLHandler::Ping() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_ping( Connection handle: 1 ) [10:20:34] CMySQLHandler::Ping() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_fetch_row_format( Connection handle: 1 ) [10:20:34] CMySQLHandler::FetchRow() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_free_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_fetch_row_format( Connection handle: 1 ) [10:20:34] CMySQLHandler::FetchRow() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_free_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_fetch_row_format( Connection handle: 1 ) [10:20:34] CMySQLHandler::FetchRow() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_free_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_num_rows( Connection handle: 1 ) [10:20:34] CMySQLHandler::NumRows() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_free_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_fetch_row_format( Connection handle: 1 ) [10:20:34] CMySQLHandler::FetchRow() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_free_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_fetch_row_format( Connection handle: 1 ) [10:20:34] CMySQLHandler::FetchRow() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_free_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_fetch_row_format( Connection handle: 1 ) [10:20:34] CMySQLHandler::FetchRow() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_num_rows( Connection handle: 1 ) [10:20:34] CMySQLHandler::NumRows() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_num_rows( Connection handle: 1 ) [10:20:34] CMySQLHandler::NumRows() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_num_rows( Connection handle: 1 ) [10:20:34] CMySQLHandler::NumRows() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_num_rows( Connection handle: 1 ) [10:20:34] CMySQLHandler::NumRows() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_num_rows( Connection handle: 1 ) [10:20:34] CMySQLHandler::NumRows() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_num_rows( Connection handle: 1 ) [10:20:34] CMySQLHandler::NumRows() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_num_rows( Connection handle: 1 ) [10:20:34] CMySQLHandler::NumRows() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_num_rows( Connection handle: 1 ) [10:20:34] CMySQLHandler::NumRows() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_num_rows( Connection handle: 1 ) [10:20:34] CMySQLHandler::NumRows() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_num_rows( Connection handle: 1 ) [10:20:34] CMySQLHandler::NumRows() - You cannot call this function now. (Reason: Dead Connection) [10:20:34] >> mysql_free_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_fetch_row_format( Connection handle: 1 ) [10:20:34] CMySQLHandler::FetchRow() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_free_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead) [10:20:34] >> mysql_query( Connection handle: 1 ) [10:20:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_store_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead) [10:20:34] >> mysql_fetch_row_format( Connection handle: 1 ) [10:20:34] CMySQLHandler::FetchRow() - You cannot call this function now. (Reason: Connection is dead) [10:20:34] >> mysql_free_result( Connection handle: 1 ) [10:20:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead) [10:20:34] >> mysql_close( Connection handle: 1 ) [10:20:34] CMySQLHandler::~CMySQLHandler() - deconstructor called. [10:20:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead) [10:20:34] CMySQLHandler::Disconnect() - You cannot call this function now. (Reason: Connection is dead)
  10. Cine ma poate ajuta si pe mine sa fac un sv mysql sa mearga pe linux pe winwdows merge dar pe linux nsh cum sa il fac va rog frumos cine ma poate ajuta [NU SE DA ADRESA DE CONTACT / WARN UP] multumesc
  11. ma ajutati plz numai atea doua mi le date plzzzzz
  12. 77172 { 77186 return result; 83294 } ultima de la gamemod z cred ca stiu care era include cu strtock din pawno ala cred ca trebuie schimbat
  13. am rezolvat akm le mai am pe astea ce pot face C:\Users\IoNuTz\Desktop\gfsql.pwn(77172) : error 021: symbol already defined: "strtok" C:\Users\IoNuTz\Desktop\gfsql.pwn(77186) : error 047: array sizes do not match, or destination array is too small C:\Users\IoNuTz\Desktop\gfsql.pwn(83294) : warning 203: symbol is never used: "CurDBWeap" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 2 Errors.
  14. am descarcat samp 0.3e de pe sa-mp.ro am copiat include am dat compile si akm apare asa ceva C:\Users\IoNuTz\Desktop\gfsql.pwn(16080) : error 017: undefined symbol "mysql_retrieve_row" C:\Users\IoNuTz\Desktop\gfsql.pwn(22126) : error 017: undefined symbol "mysql_retrieve_row" C:\Users\IoNuTz\Desktop\gfsql.pwn(77172) : error 021: symbol already defined: "strtok" C:\Users\IoNuTz\Desktop\gfsql.pwn(77186) : error 047: array sizes do not match, or destination array is too small C:\Users\IoNuTz\Desktop\gfsql.pwn(83294) : warning 203: symbol is never used: "CurDBWeap" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 4 Errors.
  15. cum se face aceasta actualizare?
  16. Am luat altu si akm uitati ce imi apare C:\Users\IoNuTz\Desktop\gfsql.pwn(6257) : error 017: undefined symbol "CreatePlayerTextDraw" C:\Users\IoNuTz\Desktop\gfsql.pwn(6257) : warning 213: tag mismatch C:\Users\IoNuTz\Desktop\gfsql.pwn(6258) : error 017: undefined symbol "PlayerTextDrawUseBox" C:\Users\IoNuTz\Desktop\gfsql.pwn(6259) : error 017: undefined symbol "PlayerTextDrawBoxColor" C:\Users\IoNuTz\Desktop\gfsql.pwn(6260) : error 017: undefined symbol "PlayerTextDrawTextSize" C:\Users\IoNuTz\Desktop\gfsql.pwn(6261) : error 017: undefined symbol "PlayerTextDrawAlignment" C:\Users\IoNuTz\Desktop\gfsql.pwn(6262) : error 017: undefined symbol "PlayerTextDrawBackgroundColor" C:\Users\IoNuTz\Desktop\gfsql.pwn(6263) : error 017: undefined symbol "PlayerTextDrawFont" C:\Users\IoNuTz\Desktop\gfsql.pwn(6264) : error 017: undefined symbol "PlayerTextDrawLetterSize" C:\Users\IoNuTz\Desktop\gfsql.pwn(6265) : error 017: undefined symbol "PlayerTextDrawColor" C:\Users\IoNuTz\Desktop\gfsql.pwn(6266) : error 017: undefined symbol "PlayerTextDrawSetOutline" C:\Users\IoNuTz\Desktop\gfsql.pwn(6267) : error 017: undefined symbol "PlayerTextDrawSetProportional" C:\Users\IoNuTz\Desktop\gfsql.pwn(6269) : error 017: undefined symbol "CreatePlayerTextDraw" C:\Users\IoNuTz\Desktop\gfsql.pwn(6269) : warning 213: tag mismatch C:\Users\IoNuTz\Desktop\gfsql.pwn(6270) : error 017: undefined symbol "PlayerTextDrawUseBox" C:\Users\IoNuTz\Desktop\gfsql.pwn(6271) : error 017: undefined symbol "PlayerTextDrawBoxColor" C:\Users\IoNuTz\Desktop\gfsql.pwn(6272) : error 017: undefined symbol "PlayerTextDrawTextSize" C:\Users\IoNuTz\Desktop\gfsql.pwn(6273) : error 017: undefined symbol "PlayerTextDrawAlignment" C:\Users\IoNuTz\Desktop\gfsql.pwn(6274) : error 017: undefined symbol "PlayerTextDrawBackgroundColor" C:\Users\IoNuTz\Desktop\gfsql.pwn(6275) : error 017: undefined symbol "PlayerTextDrawFont" C:\Users\IoNuTz\Desktop\gfsql.pwn(6276) : error 017: undefined symbol "PlayerTextDrawLetterSize" C:\Users\IoNuTz\Desktop\gfsql.pwn(6277) : error 017: undefined symbol "PlayerTextDrawColor" C:\Users\IoNuTz\Desktop\gfsql.pwn(6278) : error 017: undefined symbol "PlayerTextDrawSetOutline" C:\Users\IoNuTz\Desktop\gfsql.pwn(6279) : error 017: undefined symbol "PlayerTextDrawSetProportional" C:\Users\IoNuTz\Desktop\gfsql.pwn(6281) : error 017: undefined symbol "CreatePlayerTextDraw" C:\Users\IoNuTz\Desktop\gfsql.pwn(6281) : warning 213: tag mismatch C:\Users\IoNuTz\Desktop\gfsql.pwn(6282) : error 017: undefined symbol "PlayerTextDrawUseBox" C:\Users\IoNuTz\Desktop\gfsql.pwn(6283) : error 017: undefined symbol "PlayerTextDrawBoxColor" C:\Users\IoNuTz\Desktop\gfsql.pwn(6284) : error 017: undefined symbol "PlayerTextDrawTextSize" Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 26 Errors.
  17. C:\Users\IoNuTz\Desktop\gfsql.pwn(4335) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4345) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4351) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4392) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4404) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4428) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4444) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4458) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4476) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4492) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4501) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4541) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4590) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4593) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4615) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4621) : error 017: undefined symbol "mysql_query" C:\Users\IoNuTz\Desktop\gfsql.pwn(4691) : error 017: undefined symbol "mysql_query" ce pot face sau cineva sa ma ajute sa le fac sa continui tot pe mysql daca nu sa scot de pe mysql pe ini
  18. RemoveBuildingForPlayer(playerid, 646, 1545.5234, -1678.8438, 14.0000, 0.25); RemoveBuildingForPlayer(playerid, 646, 1553.8672, -1677.7266, 16.4375, 0.25); RemoveBuildingForPlayer(playerid, 646, 1553.8672, -1673.4609, 16.4375, 0.25); RemoveBuildingForPlayer(playerid, 646, 1545.5625, -1672.2188, 14.0000, 0.25); Astea pentru ce sunt din cate inteleg sunt ca sa stergi ceva vreau de exemplu sa sterg o cladire si sa o inlocuiesc cum fac sau de exemplu tot ce e in fata la lspd? cine ma poate ajuta sa posteze aici sau sa bage id owner_samp thx
  19. poi si atunci cum fac sa aflu cine ma poate ajuta si stie sa ma ajute plz raman dator
  20. C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(865) : error 021: symbol already defined: "Time" C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3040) : error 017: undefined symbol "FormatNumber" C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3099) : error 004: function "GivePlayerCash" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3128) : error 004: function "GivePlayerCash" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3164) : error 004: function "SafeResetPlayerWeapons" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3165) : error 004: function "SafeGivePlayerWeapon" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3192) : error 004: function "SafeResetPlayerWeapons" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3718) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3730) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3742) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3754) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3758) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3770) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3774) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3778) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3782) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3786) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3790) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3794) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3799) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3803) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3815) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3819) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3823) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3827) : error 004: function "PlayerToPoint" is not implemented C:\Documents and Settings\Admin\Desktop\sv-samp2.pwn(3831) : error 004: function "PlayerToPoint" is not implemented Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 26 Errors. Ajutatima si pe mn nu inteleg ce sa aibe am folosit si programu de cautat am sters comanda aia degeaba dupa imi da la alta la fel am facut si la aceea ce sa aibe oare cine stie sa bage id meu <Removed> sa intre prin team sau sa imi zica aici ce sa fac sa fie din cauza pwnului ?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.