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

Oldalak: 1 ... 3 4 [5] 6 7 ... 20
61
Segítségkérés / Nem megy az anim
« Dátum: 2014. július 14. - 18:53:08 »
köszi!

62
Segítségkérés / Nem megy az anim
« Dátum: 2014. július 14. - 16:35:11 »
itt a teljes kód, és a társam meglõtt kb 10szer, lefagyam, kiirta a szöveget, de az anim az nem megy
[pawn]public OnPlayerTakeDamage(playerid, issuerid, Float: amount, weaponid, bodypart)
{
    new RandomHurt[MAX_PLAYERS];
RandomHurt[playerid] = random(6)+1;
    if(RandomHurt[playerid] == 1)
    {
    if(bodypart == 3)
    {
        pInfo[playerid][body_Part_Torso] = 1;//torzó
        ApplyAnimation(playerid, \"PED\", \"KO_SHOT_STOM\", 4.1, 0, 1, 1, 1, 1, 1);
        SendClientMessage(playerid,COLOR_RED,\"Kritikus sebet kaptál a mellkasodba!\");
        Freeze(playerid);
   }
    if(bodypart == 4)
    {
        pInfo[playerid][body_Part_Groin] = 1;//ágyék
        ApplyAnimation(playerid, \"PED\", \"KO_SHOT_STOM\", 4.1, 0, 1, 1, 1, 1, 1);
        SendClientMessage(playerid,COLOR_RED,\"Kritikus sebet kaptál az ágyékon!\");
        Freeze(playerid);
   }
    if(bodypart == 5)
    {
        pInfo[playerid][body_Part_Left_Arm] = 1;//ball kéz
        SendClientMessage(playerid,COLOR_RED,\"Kritikus sebet kaptál a ball kezeden!\");
   }
    if(bodypart == 6)
    {
        pInfo[playerid][body_Part_Right_Arm] = 1;//jobb kéz
        SendClientMessage(playerid,COLOR_RED,\"Kritikus sebet kaptál a jobb kezeden!\");
   }
    if(bodypart == 7)
   {
        pInfo[playerid][body_Part_Left_Leg] = 1;//ball láb
        SendClientMessage(playerid,COLOR_RED,\"Kritikus sebet kaptál a ball lábadra!\");
        ApplyAnimation(playerid, \"PED\", \"KO_SHOT_BACK\", 4.1, 0, 1, 1, 1, 1, 1);
        Freeze(playerid);
   }
    if(bodypart == 8)
    {
        pInfo[playerid][body_Part_Right_Leg] = 1;//jobb láb
        SendClientMessage(playerid,COLOR_RED,\"Kritikus sebet kaptál a jobb lábadra!\");
        ApplyAnimation(playerid, \"PED\", \"KO_SHOT_BACK\", 4.1, 0, 1, 1, 1, 1, 1);
        Freeze(playerid);
   }
    if(bodypart == 9)
    {
        pInfo[playerid][body_Part_Head] = 1;//jobb kéz
        SendClientMessage(playerid,COLOR_RED,\"Kritikus fejsérülést szenvedtél!\");
        ApplyAnimation(playerid, \"PED\", \"KO_SHOT_FACE\", 4.1, 0, 1, 1, 1, 1, 1);
        Freeze(playerid);
   }
}
    return 1;
}[/pawn]

63
Segítségkérés / Nem megy az anim
« Dátum: 2014. július 14. - 13:49:40 »
Nem jelenik meg az anim, pedig elvileg mennie kéne
 
ApplyAnimation(playerid, \"PED\", \"KO_SHOT_STOM\", 4.1, 0, 1, 1, 1, 1, 1);

64
Segítségkérés / GetPlayerPos lehetetlen koordinátákat ad
« Dátum: 2014. július 11. - 01:08:17 »
valamiért megwarningolja a 6,7,8as sort, amit irtál

65
Segítségkérés / GetPlayerPos lehetetlen koordinátákat ad
« Dátum: 2014. július 10. - 19:32:44 »
érdekes módon tökéletesen elmenti, de mikor betölti, már mintha szorozta volna egy összevissza értékkel...

66
Segítségkérés / GetPlayerPos lehetetlen koordinátákat ad
« Dátum: 2014. július 10. - 17:34:23 »
ez szerint ennek tökéletesen mûködnie kéne
http://forum.sa-mp.com/showthread.php?t=218026

Dupla hozzászólás automatikusan összefûzve. ( 2014. július 10. - 18:57:27 )

rájöttem, hogy ezeket a koordinátákat csak a beolvasás után menti igy el.
szóval rosszul olvassa be. de ebben mit lehet rosszul beolvasni?
 
stock LoadData(playerid)
{
    new string[200];
format(string,sizeof(string),\"Users/%s.ini\",pName(playerid));
    dfile_Open(string);
dfile_MultiGet(\"fff\",
      \"PosX\",pInfo[playerid][PosX],
      \"PosY\",pInfo[playerid][PosY],
      \"PosZ\",pInfo[playerid][PosZ]
    );
dfile_CloseFile();
SetPlayerPos(playerid,pInfo[playerid][PosX],pInfo[playerid][PosY],pInfo[playerid][PosZ]);
return true;
}

67
Segítségkérés / GetPlayerPos lehetetlen koordinátákat ad
« Dátum: 2014. július 10. - 17:22:35 »
stock SaveData(playerid)//adatok mentése.
{
new string[200];
format(string,sizeof(string),\"Users/%s.ini\",pName(playerid));
new Float:X,Float:Y,Float:Z;
GetPlayerPos(playerid,X,Y,Z);
    dfile_Open(string);
    dfile_MultiSet(\"fff\",
      \"PosX\",X,
      \"PosY\",Y,
      \"PosZ\",Z
    );
    dfile_SaveFile();
    dfile_CloseFile();
return true;
}

68
Segítségkérés / GetPlayerPos lehetetlen koordinátákat ad
« Dátum: 2014. július 10. - 17:14:08 »
Mikor kilép a játékos, lekérnem az adatokat, hogy aztán ugyanoda spawnoljon,
de ilyen lehetetlen koordinátákat ad meg:
PosX=-994438464.000000
PosY=1159858944.000000
PosZ=1113545856.000000

69
Segítségkérés / Fogja magát és leáll a szerver
« Dátum: 2014. július 09. - 19:37:44 »
[16:18:54] [join] 199roma has joined the server (1:188.162.167.32)
[16:19:13] [debug] Server crashed while executing GM.amx
[16:19:13] [debug] AMX backtrace:
[16:19:13] [debug] #0 native fread () [0809aac0] from samp03svr
[16:19:13] [debug] #1 00000860 in ?? (0x0019676c) from GM.amx
[16:19:13] [debug] #2 000041a0 in ?? (0x00000001) from GM.amx
[16:19:13] [debug] #3 00009b18 in public Streamer_OnPlayerDisconnect (0x00000001, 0x00000002) from GM.amx
[16:19:13] [debug] #4 00003008 in public OnPlayerDisconnect (0x00000001, 0x00000002) from GM.amx
[16:19:13] [debug] #5 native Kick () [080d4220] from samp03svr
[16:19:13] [debug] #6 0000a7e0 in public OnDialogResponse (0x00000001, 0x00000064, 0x00000000, 0xffffffff, 0x00193248) from GM.amx
[16:19:13] [debug] Native backtrace:
[16:19:13] [debug] #0 f747109b in _ZN10StackTraceC1EPv () from plugins/crashdetect.so
[16:19:13] [debug] #1 f746c2d2 in _ZN11CrashDetect20PrintNativeBacktraceERSoPv () from plugins/crashdetect.so
[16:19:13] [debug] #2 f746cebc in _ZN11CrashDetect20PrintNativeBacktraceEPv () from plugins/crashdetect.so
[16:19:13] [debug] #3 f746d366 in _ZN11CrashDetect11OnExceptionEPv () from plugins/crashdetect.so
[16:19:13] [debug] #4 f7470cec in ?? () from plugins/crashdetect.so
[16:19:13] [debug] #5 f77dd410 in ?? ()
[16:19:13] [debug] #6 f77dd430 in ?? ()
[16:19:13] [debug] #7 f755ca71 in gsignal () from /lib32/libc.so.6
[16:19:13] [debug] #8 f755fe92 in abort () from /lib32/libc.so.6
[16:19:13] [debug] #9 f7555978 in __assert_fail () from /lib32/libc.so.6
[16:19:13] [debug] #10 0809a441 in ?? () from ./samp03svr
[16:19:13] [debug] #11 0809abe3 in ?? () from ./samp03svr
[16:19:13] [debug] #12 08093d84 in ?? () from ./samp03svr
[16:19:13] [debug] #13 f7469b9c in _ZN11CrashDetect13DoAmxCallbackEiPiS0_ () from plugins/crashdetect.so
[16:19:13] [debug] #14 f746fd38 in ?? () from plugins/crashdetect.so
[16:19:13] [debug] #15 f74761f8 in amx_Exec () from plugins/crashdetect.so
[16:19:13] [debug] #16 f746c218 in _ZN11CrashDetect9DoAmxExecEPii () from plugins/crashdetect.so
[16:19:13] [debug] #17 f746faa9 in ?? () from plugins/crashdetect.so
[16:19:13] [debug] #18 080a38ba in ?? () from ./samp03svr
[16:19:13] [debug] #19 080cdc11 in ?? () from ./samp03svr
[16:19:13] [debug] #20 080ac75b in ?? () from ./samp03svr
[16:19:13] [debug] #21 080d423e in ?? () from ./samp03svr
[16:19:13] [debug] #22 08093d84 in ?? () from ./samp03svr
[16:19:13] [debug] #23 f7469b9c in _ZN11CrashDetect13DoAmxCallbackEiPiS0_ () from plugins/crashdetect.so
[16:19:13] [debug] #24 f746fd38 in ?? () from plugins/crashdetect.so
[16:19:13] [debug] #25 f74761f8 in amx_Exec () from plugins/crashdetect.so
[16:19:13] [debug] #26 f746c218 in _ZN11CrashDetect9DoAmxExecEPii () from plugins/crashdetect.so
[16:19:13] [debug] #27 f746faa9 in ?? () from plugins/crashdetect.so
[16:19:13] [debug] #28 080a4daf in ?? () from ./samp03svr
[16:19:13] [debug] #29 080b09c4 in ?? () from ./samp03svr
[16:19:13] [debug] #30 08071ac8 in ?? () from ./samp03svr
[16:19:13] [debug] #31 08071bc2 in ?? () from ./samp03svr
[16:19:13] [debug] #32 0807ba20 in ?? () from ./samp03svr
[16:19:13] [debug] #33 080acbfd in ?? () from ./samp03svr
[16:19:13] [debug] #34 080acda2 in ?? () from ./samp03svr
[16:19:13] [debug] #35 080a81ae in ?? () from ./samp03svr
[16:19:13] [debug] #36 f7548ca6 in __libc_start_main () from /lib32/libc.so.6
[16:19:13] [debug] #37 0804b4a1 in ?? () from ./samp03svr

 

Dupla hozzászólás automatikusan összefûzve. ( 2014. július 10. - 14:08:06 )

megoldottam magam...

70
Segítségkérés / Foglalt koordináta ellenörzés.
« Dátum: 2014. július 09. - 02:42:54 »
csak egy egyszerû vázlat
 

new változó = 0;
if (változó == 0)
{
SetPlayerPos(playerid,elsõ koordináta);
változó ++; // vagy változó = 1;
}
if (változó == 1)
{
SetPlayerPos(playerid,második koordináta);
változó ++; // vagy változó = 2;
}
//és igy tovább

71
SA-MP: Szerverfejlesztés / Admin Gun
« Dátum: 2014. július 09. - 02:39:31 »
Tetszik, laza  :thumbsup:

72
SA-MP: Szerverfejlesztés / [MAP] Drag Race pálya v1.0
« Dátum: 2014. július 09. - 02:37:00 »
Nem rossz map, de a képeket kitehetted volna ide is

73
SA-MP: Szerverfejlesztés / Városháza
« Dátum: 2014. július 09. - 02:34:29 »
Kicsit sok a villanyoszlop, de ezt leszámitva nagyon laza! ment a +!

74
SA-MP: Szerverfejlesztés / Fun Sorsjegy
« Dátum: 2014. július 09. - 02:31:05 »
Köszi a tanácsot!

75
Segítségkérés / Fogja magát és leáll a szerver
« Dátum: 2014. július 08. - 19:42:11 »
Fogja magát a szerver, gondol egyet és leáll. a logban nincs semmi,
amit felhasználhatnék. Random embereknél gondol egyet és leáll.
 
----------
Loaded log file: \"server_log.txt\".
----------
SA-MP Dedicated Server
----------------------
v0.3z, (C)2005-2014 SA-MP Team
[22:27:03] filterscripts = \"\"  (string)
[22:27:03]
[22:27:03] Server Plugins
[22:27:03] --------------
[22:27:03]  Loading plugin: streamer.so
[22:27:03]
*** Streamer Plugin v2.7.2 by Incognito loaded ***
[22:27:03]   Loaded.
[22:27:03]  Loaded 1 plugins.
[22:27:03]
[22:27:03] Filterscripts
[22:27:03] ---------------
[22:27:03]   Loaded 0 filterscripts.
[22:27:03]
====================================
[22:27:03] =     Mód sikeresen betöltve!      =
[22:27:03] ====================================
[00:16:49] Incoming connection: **********
[00:16:49] [join] ********** has joined the server (**********)
[00:25:57] [part] ********** has left the server (**********)
[11:30:25] Incoming connection: **********
[11:30:25] [join] ********** has joined the server (**********)
[11:51:46] [part] ********** has left the server (**********)
[15:21:27] Incoming connection: **********
[15:21:27] [join] ********** has joined the server (**********)
----------
Loaded log file: \"server_log.txt\".
----------
SA-MP Dedicated Server
----------------------
v0.3z, (C)2005-2014 SA-MP Team
[12:53:05] filterscripts = \"\"  (string)
[12:53:05]
[12:53:05] Server Plugins
[12:53:05] --------------
[12:53:05]  Loading plugin: streamer.so
[12:53:05]
*** Streamer Plugin v2.7.2 by Incognito loaded ***
[12:53:05]   Loaded.
[12:53:05]  Loaded 1 plugins.
[12:53:06]
[12:53:06] Filterscripts
[12:53:06] ---------------
[12:53:06]   Loaded 0 filterscripts.
[12:53:06]
====================================
[12:53:06] =     Mód sikeresen betöltve!      =
[12:53:06] ====================================
[12:53:06] Number of vehicle models: 1
[12:54:03] Incoming connection: **********
[12:54:04] [join] ********** has joined the server (**********)
[12:55:58] [part] ********** has left the server (**********)
[14:29:32] Incoming connection: **********
[14:29:33] [join] ********** has joined the server (**********)
[14:32:53] [part] ********** has left the server (**********)
[15:01:02] Incoming connection: **********
[15:01:02] [join] ********** has joined the server (**********)
[15:01:44] [part] **********has left the server (**********)
[17:32:57] Incoming connection: **********
[17:32:58] [join] ********** has joined the server (**********)
[17:33:51] [part] ********** has left the server (0:1)
[22:46:19] Incoming connection: **********
[22:46:20] [join] ********** has joined the server (**********)
[22:46:37] [part] ********** has left the server (0:2)
[22:48:02] Incoming connection: 191.176.52.185:60075
[22:48:04] [join] ********** has joined the server (**********)
----------
Loaded log file: \"server_log.txt\".
----------
SA-MP Dedicated Server
----------------------
v0.3z, (C)2005-2014 SA-MP Team
[19:43:44] filterscripts = \"\"  (string)
[19:43:44]
[19:43:44] Server Plugins
[19:43:44] --------------
[19:43:44]  Loading plugin: streamer.so
[19:43:44]
*** Streamer Plugin v2.7.2 by Incognito loaded ***
[19:43:44]   Loaded.
[19:43:44]  Loaded 1 plugins.
[19:43:44]
[19:43:44] Filterscripts
[19:43:44] ---------------
[19:43:44]   Loaded 0 filterscripts.
[19:43:44]
====================================
[19:43:44] =     Mód sikeresen betöltve!      =
[19:43:44] ====================================
[19:43:44] Number of vehicle models: 1
----------
Loaded log file: \"server_log.txt\".
----------
SA-MP Dedicated Server
----------------------
v0.3z, (C)2005-2014 SA-MP Team
[19:43:58] filterscripts = \"\"  (string)
[19:43:58]
[19:43:58] Server Plugins
[19:43:58] --------------
[19:43:58]  Loading plugin: streamer.so
[19:43:58]
*** Streamer Plugin v2.7.2 by Incognito loaded ***
[19:43:58]   Loaded.
[19:43:58]  Loaded 1 plugins.
[19:43:58]
[19:43:58] Filterscripts
[19:43:58] ---------------
[19:43:58]   Loaded 0 filterscripts.
[19:43:58]
====================================
[19:43:58] =     Mód sikeresen betöltve!      =
[19:43:58] ====================================
[19:43:58] Number of vehicle models: 1
[09:56:39] Incoming connection: **********
[09:56:40] [join] ********** has joined the server (**********)
[09:57:53] [part] ********** has left the server (**********)
[16:32:12] Incoming connection: **********
[16:32:13] [join] ********** has joined the server (

 
Tényleg csak annyit figyeltem meg, hogy az utolsó bejegyzés az, hogy valaki belép.Ötletek?

Oldalak: 1 ... 3 4 [5] 6 7 ... 20
SimplePortal 2.3.7 © 2008-2024, SimplePortal