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

Oldalak: 1 ... 11 12 [13] 14
181
Segítségkérés / Km óra drift
« Dátum: 2012. április 07. - 21:43:33 »
azt hogy?

182
Segítségkérés / Km óra drift
« Dátum: 2012. április 07. - 21:11:09 »
mta de a km óra tuti van samp be is

183
Segítségkérés / Km óra drift
« Dátum: 2012. április 07. - 21:03:37 »
Hello!
Olyan kéne nekem hogy 1 km óra ami ilyen mutatós!
\"gta_sa_2012-04-07_18-55-28-34_www.kepfeltoltes.hu_.jpg\"
A képet a Képfeltöltés.hu tárolja. http://www.kepfeltoltes.hu
és olyan narancssárgán jelezze a guminyomot!
Akkor még kéne olyan hogy méri a driftet pontba és ha abbahagyod akkor kapsz x pénzt.
Ezek kellenének!

184
Segítségkérés / ladmin ideglenes mod
« Dátum: 2012. április 03. - 21:02:07 »
Sziasztok!
Olyat szeretnék létrehozni,hogy ideglenes moderátor azaz ameddig fent van addig 1 es admin reloggol akkor már játékos!
ladmin turbót használom!

185
Segítségkérés / Melyik legyen a kiépített város?
« Dátum: 2012. április 03. - 20:59:33 »
Szerintem mappoljátok meg a várost úgy az igazi!

186
Erre van a fórumon 1 ladmin turbó és az nagyon jó (szerintem) dialogos reg....
Könnyû átírni magyar!
Ha kell link küldök!

187
Segítségkérés / Mini gun
« Dátum: 2012. április 03. - 17:34:38 »
Köszi hogy küldök + szt?

188
Segítségkérés / Mini gun
« Dátum: 2012. április 03. - 11:33:45 »
Sziasztok!
erre a kódra ezt a hibát írja:
#include <a_samp>
public OnPlayerUpdate ( playerid )
{
if ( GetPlayerWeapon (killerid) != 38 ) Kick ( playerid );
return 1;
}
F:\\sampnk\\gun.pwn(5) : error 017: undefined symbol \"killerid\"
Pawn compiler 3.2.3664           Copyright © 1997-2006, ITB CompuPhase
1 Error.
ez az akar lenni hogy kickel ha minugunod van!
PLS HELP!

189
Munkaerő keresése / Scriptert keresek akár fizetek is!
« Dátum: 2012. március 29. - 20:47:47 »
Hello!
Egy jó TDM-et kéne csinálnia már van 1 azt kéne folytatni vegyetek fel msn:
[mod]Eltávolítva[/mod]
Dukma-BBEHosting Minecraft CFG

190
Segítségkérés / PPC_Housing
« Dátum: 2012. március 29. - 19:03:38 »
GetVehicleParamsEx(AHouseData[HouseID][VehicleIDs][CarSlot], engine, lights, alarm, doors, bonnet, boot, objective);
                  SetVehicleParamsEx(AHouseData[HouseID][VehicleIDs][CarSlot], 1, 1, alarm, doors, bonnet, boot, objective);
melyiket?

Dupla hozzászólás automatikusan összefûzve. ( 2012. március 29. - 20:48:41 )

valaki?  :-[

191
Segítségkérés / PPC_Housing
« Dátum: 2012. március 29. - 18:49:59 »
de ez nem a /park helyett van  ;)

192
Segítségkérés / PPC_Housing
« Dátum: 2012. március 29. - 17:54:37 »
ez?
 
COMMAND:park(playerid, params[])
{
// Setup local variables
new Float:x, Float:y, Float:z, Float:rot, vid, HouseID, Msg[128];
new engine,lights,alarm,doors,bonnet,boot,objective;
// If a player hasn\'t logged in properly, he cannot use this command
if (INT_IsPlayerLoggedIn(playerid) == 0) return 0;
// Check if the player is inside a vehicle (he must be the driver)
if (GetPlayerVehicleSeat(playerid) == 0)
{
   // Get the vehicle-id
   vid = GetPlayerVehicleID(playerid);
   // Get the HouseID to which this vehicle belongs
   HouseID = AVehicleData[vid][belongsToHouse];
   // Check if this vehicle belongs to a house (if not, the vehicle cannot be parked, as it\'s not a house-vehicle)
   if (HouseID != 0)
   {
      // Check if the vehicle is in range of the house-entrance (you cannot park a vehicle further away from your house than 150m)
      if (IsPlayerInRangeOfPoint(playerid, ParkRange, AHouseData[HouseID][HouseX], AHouseData[HouseID][HouseY], AHouseData[HouseID][HouseZ]))
      {
         // Get the player\'s position and angle
         GetVehiclePos(vid, x, y, z);
         GetVehicleZAngle(vid, rot);
         // Save those values for the vehicle
         AVehicleData[vid][spawnX] = x;
         AVehicleData[vid][spawnY] = y;
         AVehicleData[vid][spawnZ] = z;
         AVehicleData[vid][spawnRot] = rot;
         // Loop through all carslots of this house to find the vehicle-id
         for (new CarSlot; CarSlot < 10; CarSlot++)
         {
            // Check if this carslot holds the same vehicle-id
             if (AHouseData[HouseID][VehicleIDs][CarSlot] == vid)
             {
                    House_ReplaceVehicle(HouseID, CarSlot); // Re-create the vehicle at the same spot the player wants to park his vehicle
                    PutPlayerInVehicle(playerid, AHouseData[HouseID][VehicleIDs][CarSlot], 0);
               // Turn on the engine and lights
               GetVehicleParamsEx(AHouseData[HouseID][VehicleIDs][CarSlot], engine, lights, alarm, doors, bonnet, boot, objective);
               SetVehicleParamsEx(AHouseData[HouseID][VehicleIDs][CarSlot], 1, 1, alarm, doors, bonnet, boot, objective);
                    break; // Stop the for-loop
            }
         }
         // Let the player know he parked his vehicle
         SendClientMessage(playerid, 0xFFFFFFFF, \"{00FF00}Leparkoltad a jármûved.\");
         // Save the housefile
         HouseFile_Save(HouseID);
      }
      else
      {
          format(Msg, 128, \"{FFFF00}%iméteren{FF0000} belül kell parkolj a házadhoz közel.\", ParkRange);
          SendClientMessage(playerid, 0xFFFFFFFF, Msg);
      }
   }
   else
       SendClientMessage(playerid, 0xFFFFFFFF, \"{FF0000}Nem tudod leparkolni a jármûved, mert nem a te tulajdonodban van!\");
}
else
    SendClientMessage(playerid, 0xFFFFFFFF, \"{FF0000}Csak jármûben tudod leparkolni a saját jármûvedet.\");
// Let the server know that this was a valid command
return 1;
}
[/quote]

Dupla hozzászólás automatikusan összefûzve. ( 2012. március 29. - 18:06:07 )

amúgy /park bocs

193
Segítségkérés / PPC_Housing
« Dátum: 2012. március 29. - 14:03:10 »
Sziasztok!
Olyan kérdésem lenne,hogy azt hogy oldom meg hogy a ppc_housingot használok és veszek kocsit tuningolom /prak és leesik a tuning.  :\'(
Kérlek titeket segícsetek!

194
Szkript kérések / Object
« Dátum: 2012. március 27. - 20:13:55 »
KÖSZI :P

195
Szkript kérések / Object
« Dátum: 2012. március 27. - 20:01:03 »
ok

Oldalak: 1 ... 11 12 [13] 14
SimplePortal 2.3.7 © 2008-2024, SimplePortal