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


Témák - akosd127

Oldalak: 1 [2] 3
16
Az FS-be is meg a Gamemodeba is CreateDynamicObejct -et raktál?

17
Segítségkérés / Valamiért nem mûködik az éhség
« Dátum: 2014. Január 05. - 14:29:36 »
Heló!
Csináltam egy éhség, szomj-as cuccot a szerveremhez és egy darabig ment is de most nem mûködik az éhség számláló.
 

new EhsegTimer[MAX_PLAYERS];
new SzomjTimer[MAX_PLAYERS];
forward OraFrissit(playerid);
forward EhsegFrissit(playerid);
forward SzomjFrissit(playerid);
Spawnoláskor:
KillTimer(EhsegTimer[playerid]),EhsegTimer[playerid] = SetTimerEx(\"EhsegFrissit\", 60000, true, \"d\", playerid);
KillTimer(SzomjTimer[playerid]),SzomjTimer[playerid] = SetTimerEx(\"SzomjFrissit\", 30000, true, \"d\", playerid);
public OraFrissit(playerid)
{
   StatFrissit(playerid);
KillTimer(HourTimer[playerid]);
HourTimer[playerid] = SetTimerEx(\"HourJump\", 1000, true, \"i\", playerid);
KillTimer(EhsegTimer[playerid]),EhsegTimer[playerid] = SetTimerEx(\"EhsegFrissit\", 60000, true, \"d\", playerid);
KillTimer(SzomjTimer[playerid]),SzomjTimer[playerid] = SetTimerEx(\"SzomjFrissit\", 30000, true, \"d\", playerid);
return 1;
}
stock StatFrissit(playerid)
{
       new S10[128],S11[128];
       format(S10, sizeof(S10), \"Éhség: %d %%\", pInfo[playerid][pEhseg]);
TextDrawSetString(StatEhseg[playerid], S10);
format(S11, sizeof(S11), \"Szomj: %d %%\", pInfo[playerid][pSzomj]);
TextDrawSetString(StatSzomj[playerid], S11);
       return 1;
}
public EhsegFrissit(playerid)
{
if(pInfo[playerid][pEhseg] == 0)
{
    SetPlayerHealth(playerid, 0);
   }else{
       OraFrissit(playerid);
pInfo[playerid][pEhseg] --;
}
return 1;
}
public SzomjFrissit(playerid)
{
if(pInfo[playerid][pSzomj] == 0)
{
    SetPlayerHealth(playerid, 0);
   }else{
       OraFrissit(playerid);
pInfo[playerid][pSzomj] --;
}
return 1;
}

 
Azt hiszem ennyi kell hozzá ami fontosabb ebbe mi a hiba?
Le compilálja csak nem mûködik
A Szomj része mûködik

18
Szkript kérések / Fekete kép
« Dátum: 2013. December 11. - 15:19:13 »
Hali!
Szeretnék egy olyan kéréssel fordulni hozzátok hogy amikor belépek egy fekete kép jöjjön be csatlakozáskor.
Ha lespawnol a játékos akkor halványodjon el utána meg tûnjön el.



Ehhez hasonló csak teljesen sötét legyen.
\"samp020qp.png\"
 
Köszönöm elõre is!

19
Segítségkérés / Egy darab Álló NPC
« Dátum: 2013. Augusztus 20. - 01:32:02 »

Hali!
Segítségeteket akarom kérni hogy egy legyen egyetlen egy darab álló, egy helyben mozgó kis aranyos pultos lányom.
Mivel 20 x és 20 féleképpen próbáltam csinálni egyik se sikerült úgyhogy annyi lenne a feladat hogy készítsen nekem
valaki legyen szíves egy NPC-t.(Mindennel együtt recordal,fs-sel,meg még ami kell csak tudjam mit hova kell)
 

Nem kérek linkeket!
Nem kérek leírásokat!
Nem kérek ötleteket!
Csak egyetlen álló botot mert én ehhez hülye vagyok!
Köszönöm elõre is a lelkes segítõknek.
Lehet rar -ba csak legyen részletes hogy mit hova rakjak hogy mûködjön.

20
SA-MP: Szerverfejlesztés / Ha fel/lecsatlakozik kiírja.
« Dátum: 2013. Augusztus 19. - 16:49:08 »
Hali!
Készítettem egy olyan FS-t aminek a célja:
Ha felcsatlakozik egy játékos akkor azt egy TextDraw kiírja majd eltûnik.
Ugyan ez történik ha kilép valaki.
Letöltés:
http://www.solidfiles.com/d/af583ed874/
Direct Link:


21
Segítségkérés / Karakterválasztó kihagyása
« Dátum: 2013. Augusztus 18. - 18:54:57 »
Hali!
Lenne egy olyan problémám hogy ha fellép valaki a szerverre akkor ne jelejen meg alul neki ez:
\"1138042564asd_www.kepfeltoltes.hu_.jpg\"
Nagyobb kép:



\"1138042564asd_www.kepfeltoltes.hu_.jpg\"
 
A módban nincs bennt a public OnPlayerRequestClass(playerid, classid)!
Elõre is köszi a segítséget!

22
Segítségkérés / Warnol a textdraw
« Dátum: 2013. Augusztus 18. - 01:40:30 »
Hali!
Csiláltam egy TextDrawot olyanra akarom hogy rá lehessen kattintani de nem nagyon akar mûködni. :S
 
new Text:Lobby[MAX_PLAYERS];
new Text:Game[MAX_PLAYERS];
PlayerTextDrawShow(playerid, Game[playerid]);
PlayerTextDrawShow(playerid, Lobby[playerid]);
Lobby[playerid] = TextDrawCreate(317.000000, 200.000000, \"Lobby\");
TextDrawBackgroundColor(Lobby[playerid], 255);
TextDrawFont(Lobby[playerid], 3);
TextDrawLetterSize(Lobby[playerid], 0.500000, 1.000000);
TextDrawColor(Lobby[playerid], -1);
TextDrawSetOutline(Lobby[playerid], 1);
TextDrawSetProportional(Lobby[playerid], 1);
TextDrawUseBox(Lobby[playerid], 1);
TextDrawBoxColor(Lobby[playerid], 255);
TextDrawSetSelectable(Lobby[playerid], 1);
TextDrawTextSize(Lobby[playerid], 0.000000, 120.000000);
Game[playerid] = TextDrawCreate(317.000000, 250.000000, \"Game\");
TextDrawBackgroundColor(Game[playerid], 255);
TextDrawFont(Game[playerid], 3);
TextDrawLetterSize(Game[playerid], 0.500000, 1.000000);
TextDrawColor(Game[playerid], -1);
TextDrawSetOutline(Game[playerid], 1);
TextDrawSetProportional(Game[playerid], 1);
TextDrawUseBox(Game[playerid], 1);
TextDrawBoxColor(Game[playerid], 255);
TextDrawSetSelectable(Game[playerid], 1);
TextDrawTextSize(Game[playerid], 0.000000, 120.000000);

 


D:\\asd.pwn(4) : warning 213: tag mismatch
D:\\asd.pwn(5) : warning 213: tag mismatch

23
Segítségkérés / Listából beolvasás
« Dátum: 2013. Július 19. - 19:38:05 »
Hali!
Segítséget szeretnék kérni tõletek.
A problémám hogy szeretnék egy listából be\"olvastatni\" mondjuk egy ini fájlból.
Példa:
pelda.ini be bele van írva.
5
10
15
20
Na és ha mondjuk a játékosnak 5,10,15,20 pénze van akkor küld egy üzenetet.Vagy ilyesmi, lényeg hogy nem a parancsba vagy public alá kelljen beírni egyenként hanem beírom az inibe és kész.
Válaszokat elõre is köszi.

24

Üdv!
Készítettem egy mappot mert unatkoztam használjátok egészséggel! :)
 

Adatok:
Készítõ: aSa. = Én
Készítési idõ: 2 óra
Objectek száma:306
Törölt Objectek száma:46
Sorok:352
Koordináta: -1460.000, 2620.000, 60.000
Képek:



\"width=500http://kepfeltoltes.hu/130608/342110041sa-mp-003_www.kepfeltoltes.hu_.png[/img]
\"width=500http://kepfeltoltes.hu/130608/843153795sa-mp-004_www.kepfeltoltes.hu_.png[/img]
\"width=500http://kepfeltoltes.hu/130608/1013677929sa-mp-005_www.kepfeltoltes.hu_.png[/img]
\"width=500http://kepfeltoltes.hu/130608/464858014sa-mp-006_www.kepfeltoltes.hu_.png[/img]
\"width=500http://kepfeltoltes.hu/130608/1023949315sa-mp-007_www.kepfeltoltes.hu_.png[/img]
\"width=500http://kepfeltoltes.hu/130608/1006078273sa-mp-008_www.kepfeltoltes.hu_.png[/img]
\"width=500http://kepfeltoltes.hu/130608/1197416706sa-mp-009_www.kepfeltoltes.hu_.png[/img]
\"width=500http://kepfeltoltes.hu/130608/831912894sa-mp-010_www.kepfeltoltes.hu_.png[/img]
\"width=500http://kepfeltoltes.hu/130608/988703284sa-mp-011_www.kepfeltoltes.hu_.png[/img]
\"width=500http://kepfeltoltes.hu/130608/1000129001sa-mp-012_www.kepfeltoltes.hu_.png[/img]
\"width=500http://kepfeltoltes.hu/130608/443136918sa-mp-013_www.kepfeltoltes.hu_.png[/img]
 
Map:



 

RemoveBuildingForPlayer(playerid, 3300, -1464.3438, 2656.5000, 56.6484, 0.25);
RemoveBuildingForPlayer(playerid, 3341, -1446.4531, 2639.3516, 54.8047, 0.25);
RemoveBuildingForPlayer(playerid, 3342, -1447.2344, 2653.3047, 54.8203, 0.25);
RemoveBuildingForPlayer(playerid, 11673, -1461.1563, 2627.6797, 62.3516, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1611.1250, 2680.4688, 53.9141, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1579.9141, 2676.8594, 55.1797, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1551.2734, 2610.6172, 55.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1555.6875, 2636.5234, 55.1719, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1540.1563, 2590.8125, 55.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1515.5547, 2595.2969, 55.1563, 0.25);
RemoveBuildingForPlayer(playerid, 11460, -1523.2891, 2618.5938, 65.4219, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1476.7813, 2573.4141, 55.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1467.9531, 2595.4297, 55.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1486.0000, 2607.6406, 55.1563, 0.25);
RemoveBuildingForPlayer(playerid, 3278, -1479.6953, 2611.3984, 59.6172, 0.25);
RemoveBuildingForPlayer(playerid, 3278, -1483.6484, 2611.3984, 59.6172, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1460.7891, 2611.2422, 55.1563, 0.25);
RemoveBuildingForPlayer(playerid, 11479, -1460.9141, 2613.7813, 54.9688, 0.25);
RemoveBuildingForPlayer(playerid, 3278, -1485.7188, 2613.5938, 59.6172, 0.25);
RemoveBuildingForPlayer(playerid, 3278, -1485.7188, 2617.6250, 59.6172, 0.25);
RemoveBuildingForPlayer(playerid, 3278, -1485.7188, 2621.6250, 59.6172, 0.25);
RemoveBuildingForPlayer(playerid, 11543, -1461.1563, 2627.6797, 62.3516, 0.25);
RemoveBuildingForPlayer(playerid, 3278, -1485.7188, 2625.6094, 59.6172, 0.25);
RemoveBuildingForPlayer(playerid, 3278, -1485.7188, 2629.4688, 59.6172, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1490.3203, 2632.8828, 55.1563, 0.25);
RemoveBuildingForPlayer(playerid, 3278, -1485.7188, 2633.3281, 59.6172, 0.25);
RemoveBuildingForPlayer(playerid, 672, -1454.2734, 2640.1406, 55.8281, 0.25);
RemoveBuildingForPlayer(playerid, 11461, -1466.0313, 2637.5938, 54.3906, 0.25);
RemoveBuildingForPlayer(playerid, 3278, -1485.7188, 2637.1797, 59.6172, 0.25);
RemoveBuildingForPlayer(playerid, 3278, -1485.7188, 2641.0391, 59.6172, 0.25);
RemoveBuildingForPlayer(playerid, 669, -1457.8672, 2648.9922, 55.2422, 0.25);
RemoveBuildingForPlayer(playerid, 11544, -1483.2813, 2642.3828, 56.6953, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1436.1094, 2607.3906, 55.1563, 0.25);
RemoveBuildingForPlayer(playerid, 3170, -1446.4531, 2639.3516, 54.8047, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1438.6719, 2630.0234, 55.1563, 0.25);
RemoveBuildingForPlayer(playerid, 700, -1441.7891, 2647.3281, 55.2266, 0.25);
RemoveBuildingForPlayer(playerid, 11452, -1382.4531, 2648.0859, 55.1719, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1553.0156, 2680.6563, 55.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1536.2891, 2661.4688, 55.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1517.7422, 2677.1484, 55.1797, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1486.3359, 2657.2578, 55.1563, 0.25);
RemoveBuildingForPlayer(playerid, 3173, -1447.2344, 2653.3047, 54.8203, 0.25);
RemoveBuildingForPlayer(playerid, 3285, -1464.3438, 2656.5000, 56.6484, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1461.2344, 2678.8359, 55.2500, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1485.8516, 2680.7422, 55.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1308, -1436.1016, 2655.4766, 55.1563, 0.25);
CreateDynamicObject(8661, -1440.54138, 2621.20215, 54.71590,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1440.77783, 2641.17505, 54.71590,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1434.82056, 2661.12305, 54.71590,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1434.90308, 2681.09961, 54.71590,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1474.82031, 2666.25562, 54.71590,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1514.80493, 2666.21924, 54.71590,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1492.76990, 2636.27808, 54.71590,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(8661, -1494.10986, 2606.32788, 54.71590,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1494.12720, 2586.42871, 54.71590,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1454.16077, 2600.86792, 54.71590,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1436.01331, 2606.13550, 54.70590,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1535.85266, 2666.24951, 54.71000,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1547.78247, 2636.30664, 54.71590,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(8661, -1523.99670, 2597.78955, 54.71590,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(8661, -1543.89502, 2596.50415, 54.71590,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(8661, -1531.27649, 2566.66455, 54.71590,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1530.92090, 2556.16406, 54.71590,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1510.68262, 2566.72729, 54.71590,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1510.12695, 2556.10913, 54.71000,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(19425, -1519.82581, 2546.23877, 54.67430,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(19425, -1516.69788, 2546.25098, 54.67430,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(19425, -1513.47339, 2546.25269, 54.67430,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(19425, -1512.11206, 2546.24854, 54.67000,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(19425, -1555.76367, 2674.63721, 54.67980,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1555.76038, 2671.41455, 54.67980,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1555.79761, 2668.29395, 54.67980,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1555.79468, 2665.13159, 54.67980,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1416.01489, 2597.78906, 54.67630,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1416.02075, 2600.95703, 54.67630,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1416.04456, 2604.10205, 54.67630,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1416.03088, 2607.27124, 54.67630,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1420.77063, 2636.12061, 54.68270,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1420.78540, 2639.38403, 54.68270,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1420.78845, 2642.64819, 54.68270,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1420.78857, 2645.91406, 54.68270,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(18981, -1428.47302, 2595.63086, 42.33440,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(8661, -1445.90918, 2641.15649, 54.83900,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(8661, -1465.87952, 2641.15649, 54.83900,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(8661, -1475.97034, 2641.16113, 54.83800,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(8661, -1455.94751, 2621.12231, 54.83800,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(8661, -1465.98083, 2621.11963, 54.84000,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1677, -1449.43127, 2647.69580, 58.39093,   0.00000, 0.00000, 180.00000);
CreateDynamicObject(1677, -1472.50159, 2647.70508, 58.39090,   0.00000, 0.00000, -90.00000);
CreateDynamicObject(18981, -1485.44299, 2623.63623, 46.29582,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(18981, -1473.32458, 2611.60645, 46.29580,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(18981, -1448.38867, 2611.61597, 46.29580,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(18981, -1436.42395, 2630.18311, 46.29580,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(19425, -1436.52686, 2613.70044, 54.81730,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1436.52686, 2617.00000, 54.81730,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(10183, -1464.78223, 2615.91260, 54.84950,   -0.10000, 0.10000, 225.50000);
CreateDynamicObject(19425, -1436.17004, 2613.70044, 54.81730,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1436.17004, 2617.00000, 54.81730,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1436.34607, 2613.70044, 54.81730,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(19425, -1436.34607, 2617.00000, 54.81730,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(984, -1415.93921, 2629.74341, 55.30470,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(984, -1415.97766, 2616.93555, 55.30470,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(983, -1415.96973, 2609.37622, 55.30470,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(983, -1415.99890, 2592.94434, 55.30470,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(984, -1415.95374, 2652.55176, 55.30470,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(983, -1415.94141, 2657.93945, 55.30470,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(983, -1416.57654, 2664.30493, 55.30470,   0.00000, 0.00000, 11.22000);
CreateDynamicObject(983, -1416.83630, 2665.63989, 55.30470,   0.00000, 0.00000, 11.22000);
CreateDynamicObject(983, -1420.01611, 2672.61914, 55.30470,   0.00000, 0.00000, 33.89999);
CreateDynamicObject(983, -1419.23389, 2671.46606, 55.30470,   0.00000, 0.00000, 33.89999);
CreateDynamicObject(983, -1424.45142, 2677.06372, 55.30470,   0.00000, 0.00000, 56.10001);
CreateDynamicObject(983, -1425.59448, 2677.82202, 55.30470,   0.00000, 0.00000, 56.10001);
CreateDynamicObject(983, -1431.40186, 2680.27148, 55.30470,   0.00000, 0.00000, 78.54004);
CreateDynamicObject(983, -1432.78479, 2680.52222, 55.30470,   0.00000, 0.00000, 78.54004);
CreateDynamicObject(984, -1442.29858, 2681.09863, 55.30470,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(984, -1455.11707, 2681.09985, 55.30470,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(984, -1466.31250, 2681.07642, 55.30470,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(982, -1491.85889, 2681.14355, 55.30470,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(982, -1517.44446, 2681.12036, 55.30470,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(982, -1543.11145, 2681.13770, 55.30470,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(983, -1555.92883, 2679.35571, 55.30470,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(982, -1555.90662, 2653.31665, 55.30470,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(982, -1555.93018, 2627.61768, 55.30470,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(982, -1555.92346, 2601.97510, 55.30470,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(982, -1555.94934, 2576.31665, 55.30470,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(983, -1555.95276, 2564.36499, 55.30470,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(983, -1555.33423, 2558.01660, 55.30470,   0.00000, 0.00000, 11.16001);
CreateDynamicObject(983, -1555.04810, 2556.61060, 55.30470,   0.00000, 0.00000, 11.16001);
CreateDynamicObject(983, -1552.63574, 2550.83789, 55.30470,   0.00000, 0.00000, 33.71999);
CreateDynamicObject(983, -1551.86194, 2549.68774, 55.30470,   0.00000, 0.00000, 33.71999);
CreateDynamicObject(983, -1547.44128, 2545.23120, 55.30470,   0.00000, 0.00000, 56.15996);
CreateDynamicObject(983, -1546.27319, 2544.44604, 55.30470,   0.00000, 0.00000, 56.15996);
CreateDynamicObject(983, -1540.46802, 2542.07178, 55.30470,   0.00000, 0.00000, 79.01997);
CreateDynamicObject(983, -1539.10510, 2541.77832, 55.30470,   0.00000, 0.00000, 79.01997);
CreateDynamicObject(984, -1529.57495, 2541.16577, 55.30470,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(983, -1524.16968, 2541.21289, 55.30470,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(983, -1507.70471, 2541.13965, 55.30470,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(983, -1501.45374, 2542.05444, 55.30470,   0.00000, 0.00000, 101.22003);
CreateDynamicObject(983, -1503.02051, 2541.75220, 55.30470,   0.00000, 0.00000, 101.22003);
CreateDynamicObject(983, -1495.64124, 2544.42188, 55.30470,   0.00000, 0.00000, 123.48000);
CreateDynamicObject(983, -1494.50952, 2545.20020, 55.30470,   0.00000, 0.00000, 123.48000);
CreateDynamicObject(983, -1490.05493, 2549.63379, 55.30470,   0.00000, 0.00000, 146.16002);
CreateDynamicObject(983, -1489.26123, 2550.83594, 55.30470,   0.00000, 0.00000, 146.16002);
CreateDynamicObject(983, -1486.84949, 2556.63452, 55.30470,   0.00000, 0.00000, 168.65997);
CreateDynamicObject(983, -1486.56372, 2558.05615, 55.30470,   0.00000, 0.00000, 168.65997);
CreateDynamicObject(984, -1485.94861, 2567.59766, 55.30470,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1294, -1450.55054, 2632.19751, 59.28340,   3.14160, 0.00000, 0.00000);
CreateDynamicObject(1294, -1471.43140, 2632.13330, 59.28340,   3.14160, 0.00000, 180.00000);
CreateDynamicObject(1412, -1412.48877, 2651.46973, 55.91830,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(1412, -1412.51868, 2656.71484, 55.91830,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(1412, -1412.49646, 2658.46509, 55.91830,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(1412, -1409.88574, 2661.14917, 55.91830,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1412, -1404.69812, 2661.13843, 55.91830,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1412, -1399.55054, 2661.13989, 55.91830,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1412, -1396.91516, 2658.48047, 55.91830,   0.00000, 0.00000, -90.00000);
CreateDynamicObject(1412, -1396.88831, 2653.28125, 55.91830,   0.00000, 0.00000, -90.00000);
CreateDynamicObject(1412, -1396.86475, 2648.07373, 55.91830,   0.00000, 0.00000, -90.00000);
CreateDynamicObject(1412, -1394.22388, 2647.86621, 55.91830,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1412, -1396.89429, 2642.89209, 55.91830,   0.00000, 0.00000, -90.00000);
CreateDynamicObject(1412, -1396.86938, 2637.68506, 55.91830,   0.00000, 0.00000, -90.00000);
CreateDynamicObject(1412, -1396.83801, 2632.50684, 55.91830,   0.00000, 0.00000, -90.00000);
CreateDynamicObject(1412, -1396.82446, 2629.96338, 55.91830,   0.00000, 0.00000, -90.00000);
CreateDynamicObject(1412, -1388.37817, 2626.28076, 55.91830,   0.00000, 0.00000, -90.00000);
CreateDynamicObject(1412, -1391.04346, 2623.63892, 55.91830,   0.00000, 0.00000, 180.00000);
CreateDynamicObject(1412, -1396.22498, 2623.62549, 55.91830,   0.00000, 0.00000, 180.00000);
CreateDynamicObject(1412, -1401.40515, 2623.61841, 55.91830,   0.00000, 0.00000, 180.00000);
CreateDynamicObject(1412, -1406.58044, 2623.63647, 55.91830,   0.00000, 0.00000, 180.00000);
CreateDynamicObject(1412, -1409.90833, 2623.64917, 55.91830,   0.00000, 0.00000, 180.00000);
CreateDynamicObject(1412, -1412.48999, 2626.32031, 55.91830,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(1412, -1412.48120, 2630.64111, 55.91830,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(970, -1391.68799, 2637.11768, 55.51350,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(970, -1391.69019, 2632.95093, 55.51350,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(970, -1391.70532, 2629.44043, 55.51350,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(970, -1393.79175, 2627.35815, 55.51350,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(970, -1397.93591, 2627.40601, 55.51350,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(970, -1402.57202, 2627.33179, 55.22750,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(970, -1400.27051, 2627.34229, 55.34750,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(970, -1414.13928, 2634.67676, 55.22750,   0.00000, 0.00000, -40.00000);
CreateDynamicObject(0, -1414.16016, 2647.51025, 55.22750,   0.00000, 0.00000, 40.00000);
CreateDynamicObject(615, -1414.41028, 2629.29468, 54.83013,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(615, -1414.55347, 2652.37769, 54.83013,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(801, -1394.21680, 2633.58911, 54.58090,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(801, -1394.24854, 2629.84351, 54.58090,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(801, -1394.30310, 2637.23853, 54.58090,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(801, -1394.25208, 2641.11670, 54.58090,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(801, -1394.26965, 2644.93359, 54.58090,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1414.17932, 2662.48535, 54.21283,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1407.07727, 2664.74170, 54.21283,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1399.28064, 2664.82031, 54.21283,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1393.87781, 2660.28345, 54.21283,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1392.77026, 2653.77490, 54.21283,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1412.33191, 2620.74194, 54.21283,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1403.24329, 2620.47974, 54.21283,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1393.69324, 2620.98071, 54.21283,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1383.96399, 2622.81860, 54.21283,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1522, -1390.79895, 2639.30835, 54.97830,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(19425, -1474.73669, 2676.30200, 54.64770,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(19425, -1477.93921, 2676.30347, 54.64770,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1215, -1472.79370, 2681.10864, 55.38750,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1215, -1479.04236, 2681.13818, 55.38750,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1215, -1415.91907, 2636.10425, 55.22550,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1215, -1415.88965, 2646.10693, 55.22550,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1215, -1416.00610, 2606.26685, 55.38750,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1215, -1416.01660, 2596.04077, 55.25750,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1215, -1510.93542, 2541.11743, 55.25090,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1215, -1521.05469, 2541.15601, 55.25090,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1412, -1505.78870, 2537.71313, 55.89566,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1412, -1500.59241, 2537.73047, 55.89566,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1412, -1498.50647, 2537.73218, 55.89566,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1412, -1495.95264, 2535.11230, 55.89570,   0.00000, 0.00000, -90.00000);
CreateDynamicObject(1412, -1495.97070, 2529.94385, 55.89570,   0.00000, 0.00000, -90.00000);
CreateDynamicObject(1412, -1495.96948, 2524.76294, 55.89570,   0.00000, 0.00000, -90.00000);
CreateDynamicObject(1412, -1495.95276, 2519.52832, 55.89570,   0.00000, 0.00000, -90.00000);
CreateDynamicObject(1412, -1498.56287, 2516.94116, 55.89570,   0.00000, 0.00000, -180.00000);
CreateDynamicObject(1412, -1530.82092, 2516.87695, 55.89570,   0.00000, 0.00000, -180.00000);
CreateDynamicObject(1412, -1533.45288, 2519.50000, 55.89570,   0.00000, 0.00000, -270.00000);
CreateDynamicObject(1412, -1533.47937, 2524.69824, 55.89570,   0.00000, 0.00000, -270.00000);
CreateDynamicObject(1412, -1533.42615, 2529.89209, 55.89570,   0.00000, 0.00000, -270.00000);
CreateDynamicObject(1412, -1533.44580, 2535.09399, 55.89570,   0.00000, 0.00000, -270.00000);
CreateDynamicObject(1412, -1530.84167, 2537.68945, 55.89570,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1412, -1526.36255, 2537.74609, 55.89570,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(970, -1522.31665, 2539.41333, 55.22866,   0.00000, 0.00000, 51.00000);
CreateDynamicObject(970, -1509.76233, 2539.32178, 55.22870,   0.00000, 0.00000, -51.00000);
CreateDynamicObject(615, -1525.06299, 2539.22095, 54.47185,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(615, -1508.30688, 2539.21484, 54.26681,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1499.78076, 2539.97070, 54.67290,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1492.80017, 2536.60205, 54.67290,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1492.43347, 2527.18408, 54.67290,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1533.17529, 2538.95508, 54.67290,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1536.28394, 2531.31396, 54.67290,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1536.17468, 2521.97266, 54.67290,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1532.84082, 2514.41919, 54.67290,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1497.84021, 2512.87427, 54.67290,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1506.98682, 2505.52637, 54.67290,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1524.60681, 2504.35840, 54.67290,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(617, -1516.15125, 2502.57300, 54.67290,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(18981, -1428.50244, 2594.62622, 42.33440,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(18981, -1428.49573, 2593.62622, 42.33440,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(18981, -1428.47839, 2592.63550, 42.33440,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(18981, -1428.49268, 2591.62964, 42.33440,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(10183, -1419.93494, 2620.97021, 54.44750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1425.64417, 2621.03540, 54.44750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1431.62952, 2621.00562, 54.44750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1437.55750, 2621.20972, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1443.81421, 2621.30469, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1449.85474, 2621.31616, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1456.24243, 2621.24658, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1463.14099, 2621.09058, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1470.39526, 2620.99170, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1477.40637, 2620.94214, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1483.75024, 2621.02075, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1490.09045, 2621.09717, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1506.05054, 2621.28418, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1512.23108, 2621.26587, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1517.87671, 2621.19482, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1523.45898, 2621.11572, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1529.24011, 2621.01147, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1534.74670, 2621.05127, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1540.37830, 2621.12231, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1525.61719, 2603.61646, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1525.64600, 2597.04370, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1525.60217, 2590.43237, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1525.74768, 2583.77124, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1525.89209, 2577.27100, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1525.84888, 2570.89941, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1525.99255, 2564.14331, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1528.98096, 2569.05176, 54.45750,   0.00000, 1.00000, 79.44004);
CreateDynamicObject(10183, -1534.07104, 2571.71411, 54.45750,   0.00000, 1.00000, 112.20007);
CreateDynamicObject(10183, -1535.18262, 2571.21509, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1528.53101, 2571.37646, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1521.50854, 2571.36133, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1514.86816, 2571.31226, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1511.48364, 2570.82935, 54.45200,   0.00000, 1.00000, 144.66000);
CreateDynamicObject(10183, -1514.22510, 2567.91821, 54.45200,   0.00000, 1.00000, 174.42000);
CreateDynamicObject(10183, -1516.39868, 2561.83984, 54.45750,   0.00000, 1.00000, 211.73990);
CreateDynamicObject(10183, -1516.02771, 2563.81006, 54.45750,   0.00000, 1.00000, 225.00000);
CreateDynamicObject(10183, -1516.05505, 2570.07129, 54.45750,   0.00000, 1.00000, 225.00000);
CreateDynamicObject(10183, -1516.03613, 2576.42505, 54.45750,   0.00000, 1.00000, 225.00000);
CreateDynamicObject(10183, -1516.05200, 2582.55762, 54.45750,   0.00000, 1.00000, 225.00000);
CreateDynamicObject(10183, -1516.00696, 2588.98120, 54.45750,   0.00000, 1.00000, 225.00000);
CreateDynamicObject(10183, -1515.85229, 2608.56421, 54.45750,   0.00000, 1.00000, 225.00000);
CreateDynamicObject(10183, -1515.86426, 2614.95386, 54.45750,   0.00000, 1.00000, 225.00000);
CreateDynamicObject(10183, -1515.93616, 2621.71802, 54.45750,   0.00000, 1.00000, 225.00000);
CreateDynamicObject(10183, -1515.91101, 2628.32056, 54.45750,   0.00000, 1.00000, 225.00000);
CreateDynamicObject(10183, -1515.86975, 2634.75830, 54.45750,   0.00000, 1.00000, 225.00000);
CreateDynamicObject(10183, -1515.84485, 2641.04810, 54.45750,   0.00000, 1.00000, 225.00000);
CreateDynamicObject(10183, -1515.75220, 2647.36377, 54.45750,   0.00000, 1.00000, 225.00000);
CreateDynamicObject(10183, -1515.61487, 2653.49561, 54.45750,   0.00000, 1.00000, 225.00000);
CreateDynamicObject(10183, -1515.40100, 2658.68384, 54.45750,   0.00000, 1.00000, 225.00000);
CreateDynamicObject(10183, -1525.77441, 2610.31763, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1525.87317, 2617.41797, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1526.02051, 2623.52197, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1526.09790, 2629.54102, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1526.14160, 2635.29272, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1526.04114, 2641.08008, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1526.01135, 2647.28442, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1525.95349, 2653.64526, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1526.13892, 2659.88403, 54.45000,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1526.03284, 2665.42969, 54.45500,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1405.96619, 2610.81885, 54.44750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1405.92090, 2617.84814, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1406.07959, 2623.86035, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1406.06006, 2630.49390, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1406.19531, 2636.94019, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1406.23352, 2643.19458, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1406.29895, 2649.64282, 54.45750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1446.06042, 2650.78857, 54.45750,   0.00000, 1.00000, -135.00000);
CreateDynamicObject(10183, -1446.16931, 2656.61279, 54.45750,   0.00000, 1.00000, -135.00000);
CreateDynamicObject(10183, -1444.49341, 2654.75610, 54.45750,   0.00000, 1.00000, 249.77988);
CreateDynamicObject(10183, -1420.71472, 2687.10791, 54.45750,   0.00000, 1.00000, 98.16000);
CreateDynamicObject(10183, -1439.22461, 2691.13330, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1444.98950, 2691.14331, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1450.58301, 2691.15161, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1456.20276, 2691.10620, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1461.67761, 2691.10864, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1467.45337, 2691.05957, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1473.46619, 2690.96704, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1479.53955, 2690.96191, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1486.03857, 2690.94312, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1491.74866, 2690.86646, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1497.68237, 2690.80688, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1503.78296, 2690.78833, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1509.59399, 2690.83838, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1515.63330, 2690.95483, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1521.70337, 2690.89722, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1527.66479, 2691.06226, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1533.62122, 2691.14429, 54.45750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1539.36218, 2691.02954, 54.45000,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1544.73987, 2690.87964, 54.45000,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1550.60535, 2690.85596, 54.45000,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1551.37964, 2650.86768, 54.45000,   0.00000, 1.00000, -45.00000);
CreateDynamicObject(10183, -1499.94470, 2628.83521, 54.47750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1494.47961, 2613.09009, 54.47750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1469.49390, 2604.59131, 54.47750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1481.72437, 2598.58643, 54.47750,   0.00000, 1.00000, 45.00000);
CreateDynamicObject(10183, -1429.71436, 2626.92896, 54.48750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(10183, -1492.80188, 2685.24390, 54.48750,   0.00000, 1.00000, 135.00000);
CreateDynamicObject(1320, -1415.91211, 2606.24561, 56.46130,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1321, -1479.32129, 2676.25293, 56.46130,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1321, -1533.97681, 2676.26001, 56.46130,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1321, -1551.29602, 2617.25122, 56.46130,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(1321, -1442.98145, 2595.96777, 56.46130,   0.00000, 0.00000, 180.00000);
CreateDynamicObject(1324, -1506.41772, 2595.86328, 56.46130,   0.00000, 0.00000, 180.00000);
CreateDynamicObject(1324, -1486.88843, 2606.47412, 56.46130,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1324, -1502.60693, 2609.67285, 56.46130,   0.00000, 0.00000, 90.00000);
CreateDynamicObject(1324, -1490.46863, 2591.31763, 56.46130,   0.00000, 0.00000, 270.00000);
CreateDynamicObject(1323, -1533.68201, 2606.24023, 56.46130,   0.00000, 0.00000, 0.00000);
CreateDynamicObject(1320, -1540.66711, 2586.43506, 56.46130,   0.00000, 0.00000, 270.00000);
CreateDynamicObject(1323, -1540.33301, 2657.72998, 56.46130,   0.00000, 0.00000, 270.00000);
CreateDynamicObject(1323, -1489.84778, 2660.98291, 56.46130,   0.00000, 0.00000, 270.00000);
CreateDynamicObject(1320, -1506.35474, 2665.11011, 56.46130,   0.00000, 0.00000, 180.00000);
CreateDynamicObject(1320, -1557.89685, 2665.89673, 56.46130,   0.00000, 0.00000, 180.00000);

25
Fórum Archívum (Témák/Fórumok) / Re:Ladmin
« Dátum: 2013. Május 18. - 12:49:18 »
Heló PM-ben írj rám és segítek!

26
SA-MP: Szerverfejlesztés / Elhagyatott reptér felújítva.
« Dátum: 2013. Május 13. - 07:22:52 »
Üdv elhoztam nektek az elhagyatott repterem! :)(Elsõ Mappom)
 

Készítõ: aSa.

Elkészítés idõ: 3 óra


Összes Object: 334 db


Ebbõl:


- Törölt Objectek: 66 db


- Létrehozott Objectek: 268 db


Használjátok egészséggel. :)

Képek:





\"ret_r_www.kepfeltoltes.hu_.png\"

\"ret_r1_www.kepfeltoltes.hu_.png\"

\"ret_r2_www.kepfeltoltes.hu_.png\"
 

Kód:






RemoveBuildingForPlayer(playerid, 3345, 400.1172, 2543.5703, 15.4844, 0.25);
RemoveBuildingForPlayer(playerid, 16459, 230.1328, 2483.6875, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3368, 161.7891, 2411.3828, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3368, 323.0078, 2411.3828, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3369, 349.8750, 2438.2500, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3369, 269.2656, 2411.3828, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3369, 242.3984, 2438.2500, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3369, 188.6563, 2438.2500, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3369, 108.0469, 2411.3828, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3367, 296.1406, 2438.2500, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3367, 215.5313, 2411.3828, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3367, 134.9141, 2438.2500, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 16595, 419.3750, 2538.5000, 15.5391, 0.25);
RemoveBuildingForPlayer(playerid, 16596, 412.8281, 2542.8672, 15.5391, 0.25);
RemoveBuildingForPlayer(playerid, 16597, 437.3828, 2547.5156, 15.1484, 0.25);
RemoveBuildingForPlayer(playerid, 16600, 435.6250, 2532.0859, 20.1797, 0.25);
RemoveBuildingForPlayer(playerid, 16602, 307.9531, 2543.4531, 20.3984, 0.25);
RemoveBuildingForPlayer(playerid, 16772, 404.7969, 2454.7188, 22.0547, 0.25);
RemoveBuildingForPlayer(playerid, 3269, 108.0469, 2411.3828, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3270, 161.7891, 2411.3828, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 16756, 63.0000, 2417.2891, 16.0156, 0.25);
RemoveBuildingForPlayer(playerid, 3364, 77.3203, 2456.2500, 15.2813, 0.25);
RemoveBuildingForPlayer(playerid, 3269, 188.6563, 2438.2500, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3271, 134.9141, 2438.2500, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 16183, 230.1328, 2483.6875, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3271, 215.5313, 2411.3828, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3269, 242.3984, 2438.2500, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3269, 269.2656, 2411.3828, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 16098, 307.9531, 2543.4531, 20.3984, 0.25);
RemoveBuildingForPlayer(playerid, 3271, 296.1406, 2438.2500, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 3270, 323.0078, 2411.3828, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 16101, 321.6719, 2463.4922, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 16368, 321.6719, 2463.4922, 25.6641, 0.25);
RemoveBuildingForPlayer(playerid, 3269, 349.8750, 2438.2500, 15.4766, 0.25);
RemoveBuildingForPlayer(playerid, 864, 352.7734, 2444.4063, 15.8828, 0.25);
RemoveBuildingForPlayer(playerid, 864, 346.8984, 2435.5547, 16.2266, 0.25);
RemoveBuildingForPlayer(playerid, 864, 345.2422, 2432.1328, 16.0391, 0.25);
RemoveBuildingForPlayer(playerid, 864, 346.4141, 2445.2969, 15.9922, 0.25);
RemoveBuildingForPlayer(playerid, 16734, 360.4766, 2438.2500, 15.9297, 0.25);
RemoveBuildingForPlayer(playerid, 864, 357.5938, 2449.6172, 15.6406, 0.25);
RemoveBuildingForPlayer(playerid, 864, 364.2266, 2450.7578, 15.5469, 0.25);
RemoveBuildingForPlayer(playerid, 1224, 316.3672, 2531.6094, 16.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1224, 316.1641, 2534.6484, 16.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1224, 316.2656, 2533.0781, 16.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1224, 316.3516, 2545.1406, 16.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1224, 315.5625, 2551.6250, 16.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1224, 315.6641, 2550.0625, 16.1563, 0.25);
RemoveBuildingForPlayer(playerid, 16771, 404.7969, 2454.7188, 22.0547, 0.25);
RemoveBuildingForPlayer(playerid, 16773, 397.4766, 2476.6328, 19.5156, 0.25);
RemoveBuildingForPlayer(playerid, 16775, 412.1172, 2476.6328, 19.5156, 0.25);
RemoveBuildingForPlayer(playerid, 1224, 410.8281, 2528.5703, 16.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1224, 409.8047, 2529.6328, 16.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1224, 408.7188, 2530.7656, 16.1563, 0.25);
RemoveBuildingForPlayer(playerid, 1224, 407.1563, 2530.4688, 16.1563, 0.25);
RemoveBuildingForPlayer(playerid, 3172, 400.1172, 2543.5703, 15.4844, 0.25);
RemoveBuildingForPlayer(playerid, 1224, 407.8828, 2532.0078, 16.1563, 0.25);
RemoveBuildingForPlayer(playerid, 16326, 419.3750, 2538.5000, 15.5391, 0.25);
RemoveBuildingForPlayer(playerid, 16377, 416.1875, 2533.8281, 19.1328, 0.25);
RemoveBuildingForPlayer(playerid, 16378, 414.4063, 2536.5469, 18.8984, 0.25);
RemoveBuildingForPlayer(playerid, 16327, 412.8281, 2542.8672, 15.5391, 0.25);
RemoveBuildingForPlayer(playerid, 16374, 425.4688, 2531.0000, 22.5547, 0.25);
RemoveBuildingForPlayer(playerid, 16790, 425.4688, 2531.0000, 22.5547, 0.25);
RemoveBuildingForPlayer(playerid, 1498, 422.8281, 2535.7344, 15.1406, 0.25);
RemoveBuildingForPlayer(playerid, 16501, 429.9844, 2546.5156, 17.3516, 0.25);
RemoveBuildingForPlayer(playerid, 16409, 437.3828, 2547.5156, 15.1484, 0.25);
RemoveBuildingForPlayer(playerid, 16601, 435.6250, 2532.0859, 20.1797, 0.25);
CreateObject(987, 318.42130, 2558.69922, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(8034, 276.79581, 2542.50684, 20.43580,   0.00000, 0.00000, 179.99550);
CreateObject(8661, 257.00391, 2528.91870, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 256.96429, 2548.90381, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 296.97720, 2528.93115, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 296.97720, 2548.89600, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 336.85580, 2548.91040, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 336.89877, 2528.94385, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(16375, 340.02905, 2528.76318, 15.90714,   356.85840, 0.00000, 3.14159);
CreateObject(8661, 312.13901, 2558.90161, 5.83770,   -90.00000, 0.00000, 0.00000);
CreateObject(8661, 272.74780, 2558.89990, 5.83770,   -90.00000, 0.00000, 0.00000);
CreateObject(8661, 232.75929, 2558.90479, 5.84770,   -90.00000, 0.00000, 0.00000);
CreateObject(987, 330.35590, 2558.70239, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(8661, 351.12119, 2558.88794, 5.84770,   -90.00000, 0.00000, 0.00000);
CreateObject(8661, 390.53430, 2558.88867, 5.84770,   -90.00000, 0.00000, 0.00000);
CreateObject(8661, 411.30801, 2558.89282, 5.85770,   -90.00000, 0.00000, 0.00000);
CreateObject(8661, 376.58084, 2548.89136, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 411.30853, 2548.89673, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 376.70844, 2529.05249, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 411.33771, 2528.95508, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(987, 342.33371, 2558.66943, 15.42920,   0.00000, 0.00000, 179.91789);
CreateObject(987, 354.26501, 2558.67603, 15.42920,   0.00000, 0.00000, 179.93790);
CreateObject(987, 366.18542, 2558.65918, 15.42920,   0.00000, 0.00000, 179.93790);
CreateObject(987, 378.12344, 2558.63916, 15.42920,   0.00000, 0.00000, 179.93790);
CreateObject(987, 390.00888, 2558.61401, 15.42920,   0.00000, 0.00000, 179.93790);
CreateObject(987, 401.93179, 2558.67041, 15.42920,   0.00000, 0.00000, 179.93790);
CreateObject(987, 413.89304, 2558.65967, 15.42920,   0.00000, 0.00000, 179.93790);
CreateObject(987, 425.83463, 2558.67578, 15.42920,   0.00000, 0.00000, 179.93790);
CreateObject(987, 431.21124, 2558.67847, 15.42920,   0.00000, 0.00000, 179.93790);
CreateObject(987, 431.10092, 2546.62524, 15.42920,   0.00000, 0.00000, 90.00000);
CreateObject(987, 431.09979, 2539.06543, 15.42920,   0.00000, 0.00000, 90.00000);
CreateObject(987, 431.13525, 2527.07813, 15.42920,   0.00000, 0.00000, 90.00000);
CreateObject(8661, 216.97279, 2548.90308, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 217.00571, 2528.92554, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 176.98285, 2548.91455, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 177.01469, 2528.93091, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 136.99693, 2548.91382, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 137.02220, 2528.93042, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 97.00347, 2548.91089, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 97.02374, 2528.94971, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 57.06876, 2548.89087, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 57.02612, 2528.94336, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 17.08567, 2548.89893, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 17.06468, 2528.96655, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, -10.95915, 2528.97144, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, -72.82070, 2526.86792, 15.82540,   0.00000, 0.00000, 269.97601);
CreateObject(8661, -62.77737, 2509.05176, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, -62.76057, 2489.09473, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, -22.78054, 2489.07349, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, -22.81501, 2509.03979, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 17.16141, 2509.03613, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 17.12977, 2489.09106, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 57.10056, 2508.99561, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 57.11964, 2489.08179, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 97.09190, 2489.01831, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 97.08970, 2508.99658, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 137.08189, 2508.95435, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 137.07980, 2489.01172, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 177.07359, 2508.98120, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 177.07870, 2489.02637, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 217.03473, 2508.98218, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 217.07790, 2488.99829, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 257.02597, 2508.96362, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 257.06821, 2488.98535, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 297.01746, 2509.02930, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 297.05829, 2489.07715, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 336.94122, 2489.01001, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 337.00140, 2508.96362, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 376.91815, 2509.06958, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 411.21976, 2510.75049, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 411.19803, 2490.86890, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 376.91757, 2489.09351, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 192.80382, 2558.89966, 5.84770,   -90.00000, 0.00000, 0.00000);
CreateObject(987, 246.80016, 2558.67700, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 234.82010, 2558.64526, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 222.92015, 2558.67505, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 211.03488, 2558.60547, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 199.09256, 2558.65601, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 187.10974, 2558.68872, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(8661, 152.84160, 2558.87402, 5.84770,   -90.00000, 0.00000, 0.00000);
CreateObject(987, 175.14827, 2558.61230, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 163.18742, 2558.61987, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 151.24698, 2558.66675, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(8661, 112.84148, 2558.90698, 5.84770,   -90.00000, 0.00000, 0.00000);
CreateObject(987, 139.30682, 2558.65723, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 127.34688, 2558.68848, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 115.36447, 2558.59741, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 103.38397, 2558.64795, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(8661, 72.89391, 2558.90112, 5.84770,   -90.00000, 0.00000, 0.00000);
CreateObject(8661, 32.90786, 2558.89844, 5.84770,   -90.00000, 0.00000, 0.00000);
CreateObject(987, 91.38268, 2558.66724, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 79.42245, 2558.60522, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 67.43892, 2558.67212, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 55.51691, 2558.68335, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 43.59677, 2558.67676, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 31.57891, 2558.68774, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(8661, -4.55730, 2558.88647, 5.84770,   -90.00000, 0.00000, 0.00000);
CreateObject(8661, -57.05857, 2539.28418, -4.09500,   0.00000, 90.00000, 57.07000);
CreateObject(987, 19.63462, 2558.68213, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, 7.69447, 2558.68042, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, -4.24613, 2558.68921, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, -12.58150, 2558.68018, 15.42920,   0.00000, 0.00000, 180.01790);
CreateObject(987, -24.14042, 2558.75928, 15.42920,   0.00000, 0.00000, 269.74890);
CreateObject(987, -24.24321, 2546.88257, 15.42920,   0.00000, 0.00000, 230.52333);
CreateObject(987, -68.75114, 2546.58960, 15.42920,   0.00000, 0.00000, 179.96790);
CreateObject(987, -70.74313, 2546.62109, 15.42920,   0.00000, 0.00000, 180.00250);
CreateObject(8661, -82.78304, 2526.80518, 5.84770,   -90.00000, 0.00000, 90.00000);
CreateObject(987, -82.58400, 2546.72656, 15.42920,   0.00000, 0.00000, 270.00000);
CreateObject(987, -82.57784, 2534.75684, 15.42920,   0.00000, 0.00000, 270.00000);
CreateObject(987, -58.82027, 2540.26660, 15.42920,   0.00000, 0.00000, 147.27679);
CreateObject(987, -82.54721, 2522.78320, 15.42920,   0.00000, 0.00000, 269.89999);
CreateObject(8661, -82.73832, 2493.09985, 5.84770,   -90.00000, 0.00000, 90.14000);
CreateObject(987, -82.53667, 2510.80444, 15.42920,   0.00000, 0.00000, 269.97000);
CreateObject(987, -82.54355, 2498.91504, 15.42920,   0.00000, 0.00000, 270.17999);
CreateObject(19425, -33.50609, 2537.28003, 15.76800,   0.00000, 0.00000, 13.74535);
CreateObject(8038, 111.31038, 2543.86841, 35.76940,   0.00000, 0.00000, 270.00000);
CreateObject(8038, 193.35750, 2543.57910, 35.76940,   0.00000, 0.00000, 90.00000);
CreateObject(8661, -4.53100, 2548.88721, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, -27.50742, 2527.72583, 15.82540,   0.00000, 0.00000, 50.46592);
CreateObject(8661, -24.57220, 2548.91431, -4.11960,   0.00000, 90.00000, 179.70570);
CreateObject(987, -48.92791, 2533.75122, 15.42920,   0.00000, 0.00000, 147.27679);
CreateObject(1226, -33.04847, 2537.39600, 19.52123,   0.00000, 0.00000, 10.86609);
CreateObject(19425, -36.67560, 2536.50464, 15.76800,   0.00000, 0.00000, 13.74530);
CreateObject(19425, -39.86257, 2535.72559, 15.76800,   0.00000, 0.00000, 13.74535);
CreateObject(19425, -43.06370, 2534.94385, 15.76800,   0.00000, 0.00000, 13.74530);
CreateObject(19425, -46.24390, 2534.16797, 15.76800,   0.00000, 0.00000, 13.74530);
CreateObject(19425, -47.65790, 2533.82202, 15.76800,   0.00000, 0.00000, 13.74530);
CreateObject(8661, -62.72069, 2469.20093, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, -62.67584, 2449.21460, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, -62.63585, 2429.23242, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, -82.62450, 2453.89038, 5.84770,   -90.00000, 0.00000, 90.14000);
CreateObject(8661, -82.61065, 2439.20068, 5.84770,   -90.00000, 0.00000, 90.14000);
CreateObject(8661, -62.55120, 2419.38110, 5.84770,   -90.00000, 0.00000, 180.14000);
CreateObject(8661, -22.80015, 2469.17993, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, -22.78424, 2449.20703, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, -22.72690, 2429.51025, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 17.16501, 2429.55737, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 17.15574, 2469.11548, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 17.14867, 2449.22827, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 57.09538, 2469.14893, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 57.05158, 2449.23755, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 56.84212, 2429.57715, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 97.01612, 2469.07324, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 97.00501, 2449.14063, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 96.83051, 2429.54883, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 136.99915, 2469.06519, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 136.90471, 2449.49829, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 136.81696, 2429.59033, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 176.95660, 2469.04883, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 176.77679, 2449.24878, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 176.74654, 2429.59717, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 216.84442, 2469.09619, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 216.72423, 2449.27979, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 216.73355, 2429.37817, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 256.78308, 2469.10986, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 256.59534, 2449.32397, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 256.43942, 2429.42969, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 296.73697, 2469.13037, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 296.56171, 2449.15137, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 296.23773, 2429.56787, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 336.62704, 2469.11499, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 336.49796, 2449.13794, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 336.23264, 2429.56641, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 376.54318, 2469.31665, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 376.45859, 2449.55322, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 376.16089, 2429.58081, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 411.17941, 2470.92773, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 411.10297, 2451.10059, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 411.13345, 2431.17676, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8172, 1.95110, 2483.33276, 15.86070,   0.00000, 0.00000, 270.00000);
CreateObject(8357, 173.73750, 2483.33276, 15.85880,   0.00000, 0.00000, 270.00000);
CreateObject(8356, 330.24411, 2483.32104, 15.84760,   0.00000, 0.00000, 270.00000);
CreateObject(987, 431.06476, 2515.15332, 15.42920,   0.00000, 0.00000, 90.00000);
CreateObject(987, 431.04022, 2503.22266, 15.42920,   0.00000, 0.00000, 90.00000);
CreateObject(987, 431.01373, 2491.31982, 15.42920,   0.00000, 0.00000, 90.00000);
CreateObject(987, 430.96140, 2479.40674, 15.42920,   0.00000, 0.00000, 90.00000);
CreateObject(987, 430.91278, 2467.49634, 15.42920,   0.00000, 0.00000, 90.00000);
CreateObject(987, 430.84430, 2443.61450, 15.42920,   0.00000, 0.00000, 90.00000);
CreateObject(987, 430.88266, 2455.57275, 15.42920,   0.00000, 0.00000, 90.00000);
CreateObject(987, 430.84845, 2431.67261, 15.42920,   0.00000, 0.00000, 90.00000);
CreateObject(987, 430.85931, 2419.76245, 15.42920,   0.00000, 0.00000, 90.00000);
CreateObject(3816, 330.26974, 2431.50293, 24.00150,   0.00000, 0.00000, 180.00000);
CreateObject(3816, 249.70973, 2431.47949, 24.00150,   0.00000, 0.00000, 180.00000);
CreateObject(8661, 337.98514, 2413.24023, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 298.10910, 2412.95142, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 258.92529, 2413.22607, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 235.16827, 2412.99316, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(987, 364.94260, 2420.00708, 15.42920,   0.00000, 0.00000, 0.00000);
CreateObject(987, 376.91751, 2419.94165, 15.42920,   0.00000, 0.00000, 0.00000);
CreateObject(987, 388.85901, 2419.97339, 15.42920,   0.00000, 0.00000, 0.00000);
CreateObject(987, 400.83661, 2419.91553, 15.42920,   0.00000, 0.00000, 0.00000);
CreateObject(987, 412.90451, 2419.96216, 15.42920,   0.00000, 0.00000, 0.00000);
CreateObject(987, 418.90182, 2419.92798, 15.42920,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 431.10941, 2439.69531, 5.90364,   -90.00000, 0.00000, 270.00119);
CreateObject(8661, 431.11389, 2460.62158, 5.86790,   -90.00000, 0.00000, 270.00119);
CreateObject(8661, 431.27997, 2499.28662, 5.90123,   -90.00000, 0.00000, 270.00119);
CreateObject(8661, 431.33871, 2538.92432, 5.90670,   -90.00000, 0.00000, 270.00119);
CreateObject(987, -82.42594, 2463.07495, 15.42920,   0.00000, 0.00000, 269.98999);
CreateObject(987, -82.44615, 2474.95679, 15.42920,   0.00000, 0.00000, 269.98999);
CreateObject(987, -82.50430, 2486.94604, 15.42920,   0.00000, 0.00000, 270.06000);
CreateObject(987, -82.43450, 2451.10083, 15.42920,   0.00000, 0.00000, 270.10999);
CreateObject(987, -82.38005, 2439.18311, 15.42920,   0.00000, 0.00000, 270.10999);
CreateObject(987, -82.36388, 2431.19922, 15.42920,   0.00000, 0.00000, 270.10999);
CreateObject(987, -82.38742, 2419.56641, 15.42920,   0.00000, 0.00000, 0.11000);
CreateObject(987, -70.43124, 2419.63232, 15.42920,   0.00000, 0.00000, 0.11000);
CreateObject(987, -58.47840, 2419.71606, 15.42920,   0.00000, 0.00000, 0.11000);
CreateObject(987, -46.53499, 2419.78247, 15.42920,   0.00000, 0.00000, 0.11000);
CreateObject(8661, -28.73685, 2419.60425, 5.84770,   -90.00000, 0.00000, 180.14000);
CreateObject(8661, 10.31584, 2419.61035, 5.84770,   -90.00000, 0.00000, 179.93900);
CreateObject(8661, 49.94846, 2419.62231, 5.84770,   -90.00000, 0.00000, 180.14000);
CreateObject(987, -34.55544, 2419.82471, 15.42920,   0.00000, 0.00000, 0.11000);
CreateObject(987, -22.59416, 2419.82471, 15.42920,   0.00000, 0.00000, 0.11000);
CreateObject(987, -10.57476, 2419.88501, 15.42920,   0.00000, 0.00000, -0.05000);
CreateObject(987, 1.37420, 2419.87231, 15.42920,   0.00000, 0.00000, -0.05000);
CreateObject(987, 13.35702, 2419.85889, 15.42920,   0.00000, 0.00000, -0.05000);
CreateObject(987, 25.31411, 2419.82031, 15.42920,   0.00000, 0.00000, -0.05000);
CreateObject(987, 37.24091, 2419.82617, 15.42920,   0.00000, 0.00000, -0.02000);
CreateObject(987, 49.18769, 2419.82983, 15.42920,   0.00000, 0.00000, 0.10000);
CreateObject(8661, 88.83150, 2419.65381, 5.84770,   -90.00000, 0.00000, 180.14000);
CreateObject(8661, 128.80769, 2419.71265, 5.84770,   -90.00000, 0.00000, 180.14000);
CreateObject(8661, 168.65849, 2419.79565, 5.84770,   -90.00000, 0.00000, 180.14000);
CreateObject(987, 61.15440, 2419.86230, 15.42920,   0.00000, 0.00000, 0.04000);
CreateObject(987, 73.01820, 2419.87500, 15.42920,   0.00000, 0.00000, 0.04000);
CreateObject(987, 84.91940, 2419.93530, 15.42920,   0.00000, 0.00000, 0.04000);
CreateObject(987, 96.88223, 2419.95703, 15.42920,   0.00000, 0.00000, 0.04000);
CreateObject(987, 108.81790, 2420.14185, 15.42920,   0.00000, 0.00000, -0.57000);
CreateObject(987, 120.82370, 2420.06421, 15.42920,   0.00000, 0.00000, -0.49000);
CreateObject(987, 132.71590, 2420.02124, 15.42920,   0.00000, 0.00000, -0.28000);
CreateObject(987, 144.62019, 2419.98169, 15.42920,   0.00000, 0.00000, -0.08000);
CreateObject(987, 156.56619, 2420.00195, 15.42920,   0.00000, 0.00000, -0.02000);
CreateObject(987, 168.45494, 2420.12524, 15.42920,   0.00000, 0.00000, -0.02000);
CreateObject(987, 180.41673, 2420.10913, 15.42920,   0.00000, 0.00000, -0.02000);
CreateObject(8661, 207.61768, 2419.88379, 5.84770,   -90.00000, 0.00000, 180.14000);
CreateObject(987, 192.33710, 2420.11133, 15.42920,   0.00000, 0.00000, -0.02000);
CreateObject(987, 204.24135, 2420.16748, 15.42920,   0.00000, 0.00000, -0.02000);
CreateObject(987, 284.24677, 2403.11694, 15.42920,   0.00000, 0.00000, -0.02000);
CreateObject(8040, 30.19240, 2538.37134, 16.57180,   0.00000, 0.00000, 180.00000);
CreateObject(3881, -50.38420, 2530.22339, 17.62680,   0.00000, 0.00000, 180.00000);
CreateObject(1226, -47.72826, 2534.16113, 19.52123,   0.00000, 0.00000, 192.58177);
CreateObject(3526, -60.00000, 2500.30713, 16.54850,   0.00000, 0.00000, 90.00000);
CreateObject(3526, 0.00000, 2500.30713, 16.54850,   0.00000, 0.00000, 90.00000);
CreateObject(3526, 60.00000, 2500.28735, 16.54850,   0.00000, 0.00000, 90.00000);
CreateObject(3526, 120.00000, 2500.28735, 16.54850,   0.00000, 0.00000, 90.00000);
CreateObject(3526, 180.00000, 2500.28735, 16.54850,   0.00000, 0.00000, 90.00000);
CreateObject(3526, 240.00000, 2500.28735, 16.54850,   0.00000, 0.00000, 90.00000);
CreateObject(3526, 300.00000, 2500.28735, 16.54850,   0.00000, 0.00000, 90.00000);
CreateObject(3526, 360.00000, 2500.28735, 16.54850,   0.00000, 0.00000, 90.00000);
CreateObject(3526, 420.00000, 2500.28735, 16.54850,   0.00000, 0.00000, 90.00000);
CreateObject(3526, -60.00000, 2466.20264, 16.54850,   0.00000, 0.00000, 270.00000);
CreateObject(3526, 0.00000, 2466.20264, 16.54850,   0.00000, 0.00000, 270.00000);
CreateObject(3526, 60.00000, 2466.20264, 16.54850,   0.00000, 0.00000, 270.00000);
CreateObject(3526, 120.00000, 2466.20264, 16.54850,   0.00000, 0.00000, 270.00000);
CreateObject(3526, 180.00000, 2466.20264, 16.54850,   0.00000, 0.00000, 270.00000);
CreateObject(3526, 360.00000, 2466.20264, 16.54850,   0.00000, 0.00000, 270.00000);
CreateObject(3526, 240.00000, 2466.20264, 16.54850,   0.00000, 0.00000, 270.00000);
CreateObject(3526, 300.00000, 2466.20264, 16.54850,   0.00000, 0.00000, 270.00000);
CreateObject(3526, 420.00000, 2466.20264, 16.54850,   0.00000, 0.00000, 270.00000);
CreateObject(8661, -57.02121, 2527.37354, 15.82540,   0.00000, 0.00000, 326.87314);
CreateObject(8661, -33.05136, 2527.23364, 15.82540,   0.00000, 0.00000, 14.02639);
CreateObject(8661, -72.79170, 2546.82739, -4.14000,   0.00000, 90.00000, 90.00000);
CreateObject(8661, -45.12604, 2552.43481, 5.84380,   0.00000, 30.00000, 103.66000);
CreateObject(8661, -25.59519, 2545.61768, -4.16005,   0.00000, 90.00000, 140.71356);
CreateObject(8661, 411.18774, 2429.62622, 15.82540,   0.00000, 0.00000, 0.00000);
CreateObject(8661, 411.15491, 2419.69922, 5.84770,   -90.00000, 0.00000, 179.90900);
CreateObject(8661, 372.13998, 2419.74658, 5.84770,   -90.00000, 0.00000, 179.90900);
CreateObject(16684, 273.67822, 2404.83618, 15.57040,   0.00000, 0.00000, -3.13660);
CreateObject(16684, 28.20534, 2414.01855, 15.57040,   0.00000, 0.00000, -3.13660);
CreateObject(16684, 342.38593, 2533.77222, 15.37040,   0.00000, 0.00000, -0.43660);

27
Szkript kérések / Hirdetõtábla
« Dátum: 2013. Május 05. - 20:24:41 »
Csá!
Kéne nekem egy olyan szkript, amivel beírom hogy /tábla és a szöveget akkor azt írja ki egy objectre.
Erre jutottam:
 
CMD:tabla(playerid, params[])
{
    if(pInfo[playerid][pALogin] == 0) return SendClientMessage(playerid, PIROS, \"Nincs ilyen parancs, lehet hogy elírtál valamit!\");
if(pInfo[playerid][pAdmin] >= 1)
{
    new tablaszoveg[256];
    new tabla;
    if(sscanf(params, \"ud\", tablaszoveg)) return SendClientMessage(playerid, PIROS, \"Használat: /tabla < Szöveg >\");
    DestroyObject(tabla);
         DestroyObject(tabla);
    format(tablaszoveg,sizeof(tablaszoveg),\"%d\",tablaszoveg);
    tabla = CreateObject(19375, -346.90903, 2677.23145, 66.75680,   0.00000, 0.00000, -23.04000);
SetObjectMaterialText(tabla, tablaszoveg, 0, 20, \"Arial\", 100, 0, -8092540, 0, 1);
}else SendClientMessage(playerid, PIROS, \"Nem vagy Kezdõ Admin!\");
return 1;
}

 
Segítsetek legyetek szívesek.

28
Szkript kérések / Egy bizonyos helyre megy kap automatikusan nitrót.
« Dátum: 2013. Április 29. - 20:15:00 »

Hali!
Szeretnék kérni egy olyan szkriptet hogy ha valaki odaér egy koordinátához akkor alapból kapjon nitrót egy másik koordinátánál pedig javítsa meg a kocsit.A nitrónak kéne egy jelzõ hogy mennyi van még és gombnyomásra nitrózik csak(ha nyomja nitrózik ha elengedi akkor nem) de csak ha van nitrója ha kifogy akkor meg ne tudjon.Nem kell hozzá semmi kiírás.
Van egy nyomós \"nitró scriptem(nem az enyém csak találtam)\"



 

#include <a_samp>
public OnPlayerExitVehicle(playerid,vehicleid) RemoveVehicleComponent(vehicleid, 1010);
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    if(GetPlayerState(playerid) != PLAYER_STATE_DRIVER || !CheckNitro(GetPlayerVehicleID(playerid))) return false; else if ((((newkeys & (4)) == (4)) && ((oldkeys & (4)) != (4)))) AddVehicleComponent(GetPlayerVehicleID(playerid), 1010); else if ((((newkeys & (4)) != (4)) && ((oldkeys & (4)) == (4)))) RemoveVehicleComponent(GetPlayerVehicleID(playerid), 1010);
    return 1;
}
CheckNitro(vid)
{
    new NoNitro[] = { 522,481,441,468,448,446,513,521,510,430,520,476,463 }; // unknown
    for(new e = 0; e < sizeof(NoNitro); e++) if(GetVehicleModel(vid) == NoNitro[e]) return false;
    return true;
}

 
 

A nitro felvevõ helye:\"3167.33887, -2020.75598, 31.00000\"
A javító:\"3167.33887, -2073.95996, 31.00000\" és itt \"3167.33887, -1967.56006, 31.00000\"
\"3-mas körzetbe\"

29
Segítségkérés / Alap rádiók kiszedése
« Dátum: 2013. Április 24. - 13:01:37 »
Hali!
Hogy lehet kiszedni az alap rádiókat szerveren?
válaszokat elõre is köszi

30
Segítségkérés / SAMP Szerver hiba
« Dátum: 2013. Április 22. - 00:12:09 »
Üdv!
Segítséget szeretnék kérni van egy szerverem el is indul csak amikor a dialogba beirom jelszóm és nyomok egy entert akkor leáll és crashinfo.txt készít amibe ez áll:
 
--------------------------
SA-MP Server: 0.3x
 
Exception At Address: 0x0049304B Module: (samp-server.exe)
 
Registers:
EAX: 0x0018F820   EBX: 0x038F3108   ECX: 0x00000000   EDX: 0x004056F0
ESI: 0x00000000   EDI: 0x024AF268   EBP: 0x0018F830   ESP: 0x0018F808
EFLAGS: 0x00010286
 
Stack:
+0000: 0x024AF268   0x024AF268   0x038F3108   0xFFFFFFFF
+0010: 0x0018F808   0x0018F3DC   0x0018FB54   0x00496EB8
+0020: 0x004B26B0   0xFFFFFFFF   0x038F4098   0x004056FD
+0030: 0x00000000   0x004010B6   0x024AF268   0x03B4C4FC
+0040: 0x039C1968   0x00402B63   0x024AF268   0x0000000A
+0050: 0x0018F870   0x03B4C4FC   0x0018FB60   0x024AF268
+0060: 0x00000000   0x00000000   0x00000000   0x0018AB90
+0070: 0x0018AB94   0x0018AFD0   0x00186FE8   0x0018ABA0
+0080: 0x00186FE8   0x038F3108   0x039C1968   0x00000000
+0090: 0x038F0020   0x000CE860   0x0046DA61   0x024AF268
+00A0: 0x0018F8F0   0x0000001D   0x024AF268   0x00000000
+00B0: 0x024AF268   0x00000001   0x024AF268   0x00000001
+00C0: 0x024AF268   0xFFFFFFFF   0x024AF268   0x0018F90C
+00D0: 0x0018F8F4   0x0018FA48   0x03B4893C   0x00000000
+00E0: 0x0018FB49   0x024AF268   0x00000000   0x03B4893C
+00F0: 0x0048EA36   0x0000001D   0x00000001   0x00000001
+0100: 0xFFFFFFFF   0x00186FD4   0x0255D828   0x0018FB6C
+0110: 0x03CF0801   0x00000000   0x01042A0B   0x0018FFFF
+0120: 0x00000001   0x00000000   0x00000058   0x00000058
+0130: 0x00000050   0x0018FB6C   0x00496E00   0x004B2640
 
--------------------------
 
Loaded Modules:
samp-server.exe   A: 0x00400000 - 0x004F5000   (C:\\Users\\Áki\\Desktop\\szerver\\samp-server.exe)
ntdll.dll   A: 0x772C0000 - 0x77440000   (C:\\Windows\\SysWOW64\\ntdll.dll)
kernel32.dll   A: 0x74FD0000 - 0x750D0000   (C:\\Windows\\syswow64\\kernel32.dll)
KERNELBASE.dll   A: 0x75430000 - 0x75476000   (C:\\Windows\\syswow64\\KERNELBASE.dll)
UMEngx86.dll   A: 0x74D10000 - 0x74D5C000   (C:\\ProgramData\\Norton\\{0C55C096-0F1D-4F28-AAA2-85EF591126E7}\\NAV_20.2.0.19\\Definitions\\BASHDefs\\20130412.001\\UMEngx86.dll)
SHELL32.dll   A: 0x76270000 - 0x76EB9000   (C:\\Windows\\syswow64\\SHELL32.dll)
msvcrt.dll   A: 0x76090000 - 0x7613C000   (C:\\Windows\\syswow64\\msvcrt.dll)
SHLWAPI.dll   A: 0x75900000 - 0x75957000   (C:\\Windows\\syswow64\\SHLWAPI.dll)
GDI32.dll   A: 0x75C20000 - 0x75CB0000   (C:\\Windows\\syswow64\\GDI32.dll)
USER32.dll   A: 0x75F90000 - 0x76090000   (C:\\Windows\\syswow64\\USER32.dll)
ADVAPI32.dll   A: 0x757D0000 - 0x75870000   (C:\\Windows\\syswow64\\ADVAPI32.dll)
sechost.dll   A: 0x75320000 - 0x75339000   (C:\\Windows\\SysWOW64\\sechost.dll)
RPCRT4.dll   A: 0x75CB0000 - 0x75DA0000   (C:\\Windows\\syswow64\\RPCRT4.dll)
SspiCli.dll   A: 0x74E30000 - 0x74E90000   (C:\\Windows\\syswow64\\SspiCli.dll)
CRYPTBASE.dll   A: 0x74E20000 - 0x74E2C000   (C:\\Windows\\syswow64\\CRYPTBASE.dll)
LPK.dll   A: 0x76140000 - 0x7614A000   (C:\\Windows\\syswow64\\LPK.dll)
USP10.dll   A: 0x75390000 - 0x7542D000   (C:\\Windows\\syswow64\\USP10.dll)
WSOCK32.dll   A: 0x72800000 - 0x72807000   (C:\\Windows\\system32\\WSOCK32.dll)
WS2_32.dll   A: 0x75670000 - 0x756A5000   (C:\\Windows\\syswow64\\WS2_32.dll)
NSI.dll   A: 0x77290000 - 0x77296000   (C:\\Windows\\syswow64\\NSI.dll)
WINMM.dll   A: 0x72810000 - 0x72842000   (C:\\Windows\\system32\\WINMM.dll)
IMM32.DLL   A: 0x75F30000 - 0x75F90000   (C:\\Windows\\system32\\IMM32.DLL)
MSCTF.dll   A: 0x75230000 - 0x752FC000   (C:\\Windows\\syswow64\\MSCTF.dll)
VERSION.dll   A: 0x74B70000 - 0x74B79000   (C:\\Windows\\system32\\VERSION.dll)
streamer.DLL   A: 0x69330000 - 0x6936E000   (C:\\Users\\Áki\\Desktop\\szerver\\plugins\\streamer.DLL)
MSVCP100.dll   A: 0x66F00000 - 0x66F69000   (C:\\Windows\\system32\\MSVCP100.dll)
MSVCR100.dll   A: 0x66E40000 - 0x66EFF000   (C:\\Windows\\system32\\MSVCR100.dll)
sscanf.DLL   A: 0x003F0000 - 0x003FD000   (C:\\Users\\Áki\\Desktop\\szerver\\plugins\\sscanf.DLL)
nativechecker.DLL   A: 0x695B0000 - 0x695B5000   (C:\\Users\\Áki\\Desktop\\szerver\\plugins\\nativechecker.DLL)
Whirlpool.DLL   A: 0x00520000 - 0x0052C000   (C:\\Users\\Áki\\Desktop\\szerver\\plugins\\Whirlpool.DLL)
MSVCR80.dll   A: 0x72470000 - 0x7250B000   (C:\\Windows\\WinSxS\\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\\MSVCR80.dll)
mswsock.dll   A: 0x72980000 - 0x729BC000   (C:\\Windows\\system32\\mswsock.dll)
wshtcpip.dll   A: 0x72970000 - 0x72975000   (C:\\Windows\\System32\\wshtcpip.dll)
NLAapi.dll   A: 0x72960000 - 0x72970000   (C:\\Windows\\system32\\NLAapi.dll)
DNSAPI.dll   A: 0x72910000 - 0x72954000   (C:\\Windows\\system32\\DNSAPI.dll)
winrnr.dll   A: 0x72900000 - 0x72908000   (C:\\Windows\\System32\\winrnr.dll)
napinsp.dll   A: 0x728F0000 - 0x72900000   (C:\\Windows\\system32\\napinsp.dll)
pnrpnsp.dll   A: 0x728D0000 - 0x728E2000   (C:\\Windows\\system32\\pnrpnsp.dll)
IPHLPAPI.DLL   A: 0x728B0000 - 0x728CC000   (C:\\Windows\\system32\\IPHLPAPI.DLL)
WINNSI.DLL   A: 0x728A0000 - 0x728A7000   (C:\\Windows\\system32\\WINNSI.DLL)
rasadhlp.dll   A: 0x72850000 - 0x72856000   (C:\\Windows\\system32\\rasadhlp.dll)
uxtheme.dll   A: 0x70ED0000 - 0x70F50000   (C:\\Windows\\system32\\uxtheme.dll)
PROPSYS.dll   A: 0x715D0000 - 0x716C5000   (C:\\Windows\\system32\\PROPSYS.dll)
OLEAUT32.dll   A: 0x756B0000 - 0x7573F000   (C:\\Windows\\syswow64\\OLEAUT32.dll)
comctl32.dll   A: 0x729C0000 - 0x72B5E000   (C:\\Windows\\WinSxS\\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7600.16385_none_421189da2b7fabfc\\comctl32.dll)
apphelp.dll   A: 0x74C90000 - 0x74CDB000   (C:\\Windows\\system32\\apphelp.dll)
CLBCatQ.DLL   A: 0x75DA0000 - 0x75E23000   (C:\\Windows\\syswow64\\CLBCatQ.DLL)
iertutil.dll   A: 0x75960000 - 0x75B59000   (C:\\Windows\\syswow64\\iertutil.dll)
urlmon.dll   A: 0x74E90000 - 0x74FC5000   (C:\\Windows\\syswow64\\urlmon.dll)
CRYPT32.dll   A: 0x76150000 - 0x7626C000   (C:\\Windows\\syswow64\\CRYPT32.dll)
MSASN1.dll   A: 0x75340000 - 0x7534C000   (C:\\Windows\\syswow64\\MSASN1.dll)
SETUPAPI.dll   A: 0x75480000 - 0x7561D000   (C:\\Windows\\syswow64\\SETUPAPI.dll)
CFGMGR32.dll   A: 0x75360000 - 0x75387000   (C:\\Windows\\syswow64\\CFGMGR32.dll)
DEVOBJ.dll   A: 0x75300000 - 0x75312000   (C:\\Windows\\syswow64\\DEVOBJ.dll)
ntmarta.dll   A: 0x74A20000 - 0x74A41000   (C:\\Windows\\system32\\ntmarta.dll)
WLDAP32.dll   A: 0x75620000 - 0x75665000   (C:\\Windows\\syswow64\\WLDAP32.dll)

 
Ha valaki segítene megoldani a problémám hogy ne álljon le a szerver akkor azt nagyon megköszönném!
[mod]Máskor használd a [ *code=pawn ] [ */code ] tagokat csillagok nélkül! Köszönöm.[/mod]

Oldalak: 1 [2] 3
SimplePortal 2.3.7 © 2008-2024, SimplePortal