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

Oldalak: 1 ... 40 41 [42] 43 44 ... 117
616
Szép munka grat hozzá

617
Segítségkérés / MTA Map konvert.
« Dátum: 2014. június 19. - 18:40:03 »

618
Segítségkérés / Ház eladása játékosnak!
« Dátum: 2014. június 19. - 16:39:01 »
http://sampforum.hu/index.php?topic=15471.0 magyar
angol  : http://forum.sa-mp.com/showthread.php?t=283501
próbáld meg ezt és akkor nem kell itt játékos nevét id írni stb nem kell túl bonyolítani a dolgokat

619
Segítségkérés / Ház eladása játékosnak!
« Dátum: 2014. június 17. - 17:02:37 »
Ez hogy lenen PPC_Housing? Látszin a kódból hogy nem az..
Témanyitó mért nem használsz PPC_Házrendszert?
[mod]Devil112 valószínûleg pontosan ezt kérdezte - igaz, lehetett volna egyértelmûbb is.[/mod]

620
Segítségkérés / Kisebb kérdések
« Dátum: 2014. június 14. - 17:08:05 »
Sziasztok.....Tudtok valami tippet adni arra hogy ne úszon a levegében a csávó ? Mert van egy olyan hogy tud úszni a levegõben arra nem találok semmi védelmet.

621
Segítségkérés / S0beit elleni védelem.Valaki?
« Dátum: 2014. június 12. - 20:15:42 »
Idézetet írta: kadaradam date=1402516032\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"48705\" data-ipsquote-contentclass=\"forums_Topic
tessék: http://forum.sa-mp.com/showthread.php?t=448842
Annyit csinál, hogy megnézi a játékos kameráját, ha fel van tolva teljesen, akkor sobeit van telepítve a player géppre. Ugyanis sobeit használata közben, ha lefagyasztod a játékost, akkor a kamera felfog mozdulni 3-4 mp elteltével.
fájllekérést felejtsd el, client nélkül nem fog menni
 
Ez tényleg mûködik s0beit ellen?

622
Segítségkérés / MSVCP100
« Dátum: 2014. június 10. - 19:50:48 »

625
Segítségkérés / Map!
« Dátum: 2014. június 08. - 15:26:32 »
Próbáld meg
 
public OnFilterScriptInit()
{
//alá tenni a dolgokat

626
Segítségkérés / PWN file
« Dátum: 2014. június 08. - 14:29:25 »
Szerintem ez kamu....Még ha vissza is tudná fordítani akkor se lenen olyan mint az eredeti

627
Segítségkérés / Interior
« Dátum: 2014. június 07. - 10:01:36 »
Azt úgy tudod megoldani ha mappolsz egyet és azt teszed be..

628
Segítségkérés / Itt kérdezz warningot/error -t!
« Dátum: 2014. május 20. - 20:06:57 »
Sziasztok akadta egy kis problémám de nem látom a hibát errort ír ki erre a sorra
 
 public Convoy_Timer(Convoy)
{
// Setup local variables
new LeaderID, MemberID;
// Update the textdraws for all convoy members
    Convoy_UpdateTextDraws(Convoy);
// Get the leader-id
LeaderID = AConvoys[Convoy][Members][0];
    // Check the jobstep for the entire convoy
switch (AConvoys[Convoy][ConvoyStep])
{
case 0: // Convoy has just been created, but a job hasn\'t started yet by the leader
{
   new bool:AllSameTrailer = true;
   // Keep checking if the leader has started a job already
   if (APlayerData[LeaderID][JobStarted] == true)
   {
      // Copy the job-data from the leader to the convoy
      AConvoys[Convoy][LoadID] = APlayerData[LeaderID][LoadID];
      AConvoys[Convoy][Location1] = APlayerData[LeaderID][JobLoc1];
      AConvoys[Convoy][Location2] = APlayerData[LeaderID][JobLoc2];
      // Set the trailer-model required by all members to the convoy
      AConvoys[Convoy][TrailerModel] = GetVehicleModel(GetVehicleTrailer(GetPlayerVehicleID(LeaderID)));
      // First check if all players have the correct trailer (except for the leader)
      for (new i = 1; i < CONVOY_MAX_MEMBERS; i++)
      {
         MemberID = AConvoys[Convoy][Members]; // Get the member-id from this member-spot
         if (MemberID != -1) // Check if the member-id is a valid playerid
         {
             // Check if the player has the same trailer-model attached to his vehicle as the convoy requires
            if (GetVehicleModel(GetVehicleTrailer(GetPlayerVehicleID(MemberID))) != AConvoys[Convoy][TrailerModel])
            {
                // Inform the player that he hasn\'t got the correct trailer
                switch (AConvoys[Convoy][TrailerModel])
                {
                  case VehicleTrailerCargo, VehicleTrailerCargo2: TextDrawSetString(APlayerData[MemberID][MissionText], \"{0059ff}Szükséged van Cargo pótkocsira.\");
                  case VehicleTrailerOre: TextDrawSetString(APlayerData[MemberID][MissionText], \"{0059ff}Szükséged van Ore pótkocsira.\");
                  case VehicleTrailerFluids: TextDrawSetString(APlayerData[MemberID][MissionText], \"{0059ff}Szükséged van Tartályos poótkocsira.\");
               }
               // Not everyone has the same trailer
               AllSameTrailer = false;
            }
         }
      }
                else // Leader has no trailer attached, so check for the vehiclemodel //erre ír errort de nem találom benne a hibát
      {
         // First check if all players have the correct trailer (except for the leader)
         for (new i = 1; i < CONVOY_MAX_MEMBERS; i++)
         {
            MemberID = AConvoys[Convoy][Members]; // Get the member-id from this member-spot
            if (MemberID != -1) // Check if the member-id is a valid playerid
            {
                // Get the vehiclemodel of the member
                new vModel = GetVehicleModel(GetPlayerVehicleID(MemberID));
                // Check if the member has a valid trucking vehicle (flatbed or DFT30)
               switch (vModel)
               {
                  case VehicleFlatbed, VehicleDFT30, VehicleCementTruck, VehicleBenson, VehicleYankee: AllSameTrailer = true;
                  default:
                  {
                     TextDrawSetString(APlayerData[MemberID][MissionText], \"~w~Neked nincs megfelelõ ~r~jármûved így nem indúlhat a convoy\");
                     AllSameTrailer = false;
                  }
               }
            }
         }
      }

 

D:\\modom\\pawno\\include\\PPC_Convoys.inc(352) : error 029: invalid expression, assumed zero
Pawn compiler 3.2.3664           Copyright (c) 1997-2006, ITB CompuPhase
 
1 Error.

629
SA-MP: Szerverfejlesztés / Rubik\'s Cube | by: razr
« Dátum: 2014. május 13. - 00:33:49 »
Nagyon jó ....Ötletes mapp :D

630
Segítségkérés / Kisebb kérdések
« Dátum: 2014. május 08. - 11:05:04 »
Sziasztok. Az lenne a problémám hogy van az a Tarm nevezetû villamos féle jármû és ha kiszállok belõle akkor nem tudok vissza ülni.Ezért kérem a segítségeteket.

Oldalak: 1 ... 40 41 [42] 43 44 ... 117
SimplePortal 2.3.7 © 2008-2024, SimplePortal