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

Oldalak: [1] 2
1
Kérdések, Segítség / Monitor Hiba
« Dátum: 2014. Május 18. - 12:10:40 »
Sziasztok!


A Monitorom egy eléggé erotikus szöveget jelenít meg,mikor belépek a SaMp-ba.De ugyan ezt írja ki a SinglePlayer -nél is.
Valami méretarány hibát ír(1024x1082).
A kérdés lényege:Át tudom állítani kívülrõl a SaMp,vagy a SinglePlayer méretét?
Már többször is újra raktam a Gta-t.De semmire nem reagál.
Válaszokat elõre is köszönöm!
 
SuspecT

2
SA-MP: Szerverfejlesztés / Mini Rcon Script
« Dátum: 2013. Szeptember 01. - 21:17:11 »
Mini RCON SCRIPT By:SuspecT
Készítõ:SuspecT(Én)

Elkészítési idõ:15perc


Parancsok:

/godbe

/godki


/ban

/kick


/asay

/slap

 
/*::::Rcon Script By:SuspecT::::
Elsõ Scriptem,ami ér is valamit.
Remélem valaki hasznát veszi.*/
#include
#define Piros                     0xAA3333AA
#define Kék                       0x0000FFAA
#define Zöld                      0x33AA33AA
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(\"/godbe\", cmdtext, true, 10) == 0)
{
if(!IsPlayerAdmin(playerid))SendClientMessage(playerid,Piros,\"HIBA:Te nem vagy Admin!\");
       else
       SendClientMessage(playerid,Zöld,\"Halhatatlanság bekapcsolva!Kikapcsoláshoz: /godki\");
SetPlayerHealth(playerid,9900);
return 1;
}
return 0;
}
 
CMD:godki(playerid,params[])
{
if(!IsPlayerAdmin(player))SendClientMessage(playerid,Piros\"HIBA:Te nem vagy Admin!\");
else
      SendClientMessage(playerid,Zöld,\"Halhatatlanság kikapcsolva!\");
      SetPlayerHealth(playerid,100);
 
CMD:ban(playerid,params[])
{
if(IsPlayerConnected(playerid))
           {
               {
                   new indok[128];
                                       new id;
                                       new string[128];
                                       new nev[MAX_PLAYER_NAME];
                                       GetPlayerName(playerid,nev,sizeof(nev));
                                       new pnev[MAX_PLAYER_NAME];
                                       GetPlayerName(id,pnev,sizeof(pnev));
                                       if(!IsPlayerAdmin(playerid))SendClientMessage(playerid,Piros,\"HIBA:Te nem vagy Admin!\");
                                       if(sscanf(params, \"us[128]\",id,indok))SendClientMessage(playerid,Piros,\"Használat: /ban [JátékosID] [indok]\");
                                       else if(id == INVALID_PLAYER_ID)SendClientMessage(playerid,Piros,\"HIBA:Elgépelted az ID-t!\");
                                       format(string,sizeof(string),\"[ADMIN]%s kibanolta %s-t a szerverrõl!Indok:%s.\",nev,pnev,indok);
                                       SendClientMessageToAll(Piros,string);
                                       Ban(id);
                               }
                       }
       return 1;
}
CMD:kick(playerid,params[])
{
   if(IsPlayerConnected(playerid))
       {
               {
                                       new indok[128];
                                       new id;
                                       new string[128];
                                       new nev[MAX_PLAYER_NAME];
                                       GetPlayerName(playerid,nev,sizeof(nev));
                                       new pnev[MAX_PLAYER_NAME];
                                       GetPlayerName(id,pnev,sizeof(pnev));
                                       if(!IsPlayerAdmin(playerid))SendClientMessage(playerid,piros,\"Nem vagy admin!\");
                                       if(sscanf(params, \"us[128]\",id,indok))SendClientMessage(playerid,piros,\"Használat: /kick [JátékosID] [indok]\");
                                       else if(id == INVALID_PLAYER_ID)SendClientMessage(playerid,Piros,\"HIBA:Elgépelted az ID-t!\");
                                       format(string,sizeof(string),\"%s kirúgta %s-t!Indok: %s.\",nev,pnev,indok);
                                       SendClientMessageToAll(Piros,string);
                                       Kick(id);
               }
       }
       return 1;
}
 
CMD:slap(playerid,params[])
{
       if(IsPlayerConnected(playerid))
           {
               {
               new id;
                       new nev[20];
                       new pnev[20];
                       GetPlayerName(playerid,nev,sizeof(nev));
                       GetPlayerName(id,pnev,sizeof(pnev));
                       new string[128];
                       if(!IsPlayerAdmin(playerid))SendClientMessage(playerid,Piros,\"HIBA:nem vagy Admin!\");
                       if(sscanf(params, \"u\",id))SendClientMessage(playerid,Piros,\"Használat: /slap [JátékosID]\");
                       else if(id == INVALID_PLAYER_ID) return msg(playerid,Piros,\"HIBA:Elgépelted az ID-t!\");
                       else {
                       format(string,sizeof(string),\"%s Slappolta %s-t!\",nev,pnev);
                       SendAdminMessage(piros,string);
                       format(string,sizeof(string),\"Slappoltad %s-t!\",pnev);
                       msg(playerid,piros,string);
                       format(string,sizeof(string),\"[ADMIN]%s Slappolt téged!\",nev);
                       msg(id,szin,string);
                       new Float:x,Float:y,Float:z;
                       GetPlayerPos(id,x,y,z);
                       SetPlayerPos(id,x,y,z+2);
                       }
               }
           }
       return 1;
}
 
CMD:asay(playerid, params[])
{
       {
       new say[128];
       new nev[MAX_PLAYER_NAME];
       GetPlayerName(playerid,nev,sizeof(nev));
       new string[128];
       if(!IsPlayerAdmin(playerid))SendClientMessage(playerid,Piros,\"HIBA:nem vagy Admin!\");
       if(sscanf(params,\"s[128]\",say))SendClientMessage(playerid,Piros,\"Használat: /asay [Üzenet]\");
       else {
       format(string,sizeof(string),\"[ADMIN]:%s:%s\",nev,say);
       SendClientMessageToAll(Kék,string);
       }
       }
       return 1;
}

 
UI:Unatkoztam,és nem volt más ötletem.

3
Segítségkérés / Interrior
« Dátum: 2013. Szeptember 01. - 19:32:01 »
Megint én lennék,egy újabb kérdéssel.

Szeretném azt megcsinálni,hogy Mta-val elkészítem mondjuk a kórházt.


Az Interriorját hogy állíthatom be?Meg azt a kis \"i\" betût?


Pl:   Tele:::  /korhaz


Elteleportáltál a kórházba!Belépéshez írd: /belep    kilépéshez /kilep


Elõre is köszi a válaszokat!

4
Segítségkérés / Pawno
« Dátum: 2013. Szeptember 01. - 19:24:33 »
Sziasztok!

Sajnos nekem a
hibátlan Scriptekre/Code-okra, is Warningot/Errortír a Pawno.

Valaki nem tudná belinkelni a
Pawno-ját,akinek minden Include,és egyéb dolog megvan?

Nagyon fontos lenne.

Elõre is köszönöm!!!

5
SA-MP: Szerverfejlesztés / Autó Reklám
« Dátum: 2013. Augusztus 25. - 21:14:29 »
Sziasztok!
Éppen a \"segítségkérés\" topicban jártam,amikor rápillantottam egy \"autó reklám\" kérésre.

Megírtam hát,és elküldtem,de szerettem volna itt is közzé tenni.

Készítõ:Én(SuspecT)

Elkészítési idõ:5perc



 

#include <a_samp>
#if defined FILTERSCRIPT
forward reklam();
public OnFilterScriptInit()
{
SetTimer(reklam,120000,true);
return 1;
}
public reklam()
}
SendClientMessageToall(0x00ff00AA,\"[sZERVER]:Segítségekért==>/help.\");
SendClientMessageToall(0x00ff00AA,\"[sZERVER]:Ne hírdess!\");
SendClientMessageToall(0x00ff00AA,\"[sZERVER]:Buggot találtál?Jelentsd az Adminoknak!==>/report.\");
return 1;
}
#endif

6
SA-MP: Szerverfejlesztés / Admin Land By:SuspecT
« Dátum: 2013. Augusztus 17. - 17:56:19 »
Sziasztok!
Ma unalmamban beléptem az MTA-ba,és az Admin Area-n kívül semmi nem jutott eszembe.

Elkészítési idõ:2 óra(mindennel együtt)


Santa Maria Beach felett van.


Sorok:182

KÉPEK
\"QE5BXEtvAwMCUlkbFgVR\"
\"QE5BXEtvAwMCUlkbGQVR\"
\"QE5BXEtvAwMCUlkbGAVR\"
\"QE5BXEtvAwMCUlkbQAVR\"
\"QE5BXEtvAwMCUlkbQgVR\"
TELEPORT
 
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(\"/Adminarea\", cmdtext, true, 10) == 0)
SendClientMessage(playerid,0x00ff00AA,\"[TELEPORT]Üdvözöllek az Admin Area-ban!\");
        SetPlayerPos(playerid, 863.7557,-1975.7946,155.4007);
return 1;
}

 
Feltöltöttem,hátha valaki szerkeszteni szeretné. :) PERSZE CSAK HA A NEVEMET FELTÜNTETI!


LETÖLTÉS:   http://www.solidfiles.com/d/ba26806d9e/
MAP CODE
 
CreateObject(8172, 806.59998, -2041.90002, 154.39999, 0, 0, 0);
CreateObject(8172, 846.2998, -2041.89941, 154.39999, 0, 0, 0);
CreateObject(8172, 885.09998, -2041.90002, 154.39999, 0, 0, 0);
CreateObject(4825, 838.09961, -2024.09961, 151.89999, 0, 0, 0);
CreateObject(7073, 807.40002, -2043.69995, 178.10001, 0, 0, 0);
CreateObject(7073, 805.40002, -2004.59998, 178.10001, 0, 0, 180.25);
CreateObject(3461, 816.29999, -2028.80005, 162.8, 0, 0, 0);
CreateObject(3461, 816.29999, -2019.40002, 162.8, 0, 0, 0);
CreateObject(8172, 786.89941, -2041.7998, 154.39999, 0, 0, 0);
CreateObject(2232, 779.5, -2017.80005, 160.39999, 0, 0, 59.998);
CreateObject(2232, 779.7998, -2030.5, 160.39999, 0, 0, 123.997);
CreateObject(2229, 779.20001, -2029.90002, 161.2, 0, 0, 128);
CreateObject(2229, 779.19922, -2029.89941, 159.8, 0, 0, 127.996);
CreateObject(2229, 779.79999, -2030.80005, 161.2, 0, 0, 127.996);
CreateObject(2229, 779.7998, -2030.7998, 159.8, 0, 0, 128);
CreateObject(2229, 779.19922, -2017.89941, 159.8, 0, 0, 61.243);
CreateObject(2229, 779.20001, -2017.90002, 161.2, 0, 0, 61.243);
CreateObject(2229, 779.69922, -2017, 159.8, 0, 0, 61.243);
CreateObject(2229, 779.70001, -2017, 161.2, 0, 0, 61.243);
CreateObject(1760, 783.90002, -2029.30005, 159.8, 0, 0, 122);
CreateObject(1760, 782.5, -2026.5, 159.8, 0, 0, 92.248);
CreateObject(1760, 782.40002, -2023.59998, 159.8, 0, 0, 89.247);
CreateObject(1760, 782.70001, -2020.5, 159.8, 0, 0, 67.242);
CreateObject(1281, 788.20001, -2030.90002, 160.60001, 0, 0, 0);
CreateObject(1281, 792, -2030.90002, 160.60001, 0, 0, 0);
CreateObject(1281, 795.70001, -2030.90002, 160.60001, 0, 0, 0);
CreateObject(1281, 795.5, -2017.30005, 160.60001, 0, 0, 0);
CreateObject(1281, 792.20001, -2017.30005, 160.60001, 0, 0, 0);
CreateObject(1281, 788.79999, -2017.30005, 160.60001, 0, 0, 0);
CreateObject(1824, 779.09998, -2021.30005, 160.39999, 0, 0, 64.5);
CreateObject(1827, 786.20001, -2023.09998, 159.8, 0, 0, 0);
CreateObject(1896, 778.40002, -2024.80005, 160.8, 0, 0, 0);
CreateObject(2637, 785.79999, -2032.90002, 160.3, 0, 0, 0);
CreateObject(2637, 783.70001, -2032.90002, 160.3, 0, 0, 0);
CreateObject(2190, 785.90002, -2032.80005, 160.7, 0, 0, 158);
CreateObject(2190, 785, -2032.90002, 160.7, 0, 0, 158);
CreateObject(2190, 784, -2032.90002, 160.7, 0, 0, 158);
CreateObject(2190, 783.09998, -2032.90002, 160.7, 0, 0, 158);
CreateObject(1671, 786.29999, -2032, 160.3, 0, 0, 0);
CreateObject(1671, 785.29999, -2032, 160.3, 0, 0, 0);
CreateObject(1671, 784.29999, -2032, 160.3, 0, 0, 0);
CreateObject(1671, 783.40002, -2032, 160.3, 0, 0, 0);
CreateObject(1968, 786, -2015.69995, 160.39999, 0, 0, 0);
CreateObject(1968, 785.90002, -2017.40002, 160.39999, 0, 0, 0);
CreateObject(6295, 887.59998, -2042.40002, 178.3, 0, 0, 0);
CreateObject(7017, 868, -2122.5, 154.39999, 0, 0, 0);
CreateObject(7017, 804.09998, -2122.5, 154.39999, 0, 0, 0);
CreateObject(7017, 767.20001, -2085.69995, 154.39999, 0, 0, 90.25);
CreateObject(7017, 766.90002, -2012.09998, 154.39999, 0, 0, 90.247);
CreateObject(7017, 904.5, -1998.09998, 154.39999, 0, 0, 269.997);
CreateObject(7017, 803.59998, -1961.5, 154.39999, 0, 0, 0);
CreateObject(7017, 867.70001, -1961.5, 154.39999, 0, 0, 0);
CreateObject(7017, 766.89941, -1998.2998, 154.39999, 0, 0, 90.242);
CreateObject(7017, 904.5, -2067.5, 154.39999, 0, 0, 269.995);
CreateObject(7017, 904.5, -2085.80005, 154.39999, 0, 0, 269.995);
CreateObject(2637, 798.79999, -2026.80005, 160.3, 0, 0, 0);
CreateObject(2637, 796.70001, -2026.80005, 160.3, 0, 0, 0);
CreateObject(2637, 794.59998, -2026.80005, 160.3, 0, 0, 0);
CreateObject(1340, 779.20001, -2027.80005, 161, 0, 0, 0);
CreateObject(987, 801.20001, -2023.5, 161.10001, 0, 0, 268);
CreateObject(1499, 801.5, -2023.19922, 161.10001, 0, 0, 90);
CreateObject(1499, 801.5, -2020.19995, 161.10001, 0, 0, 269.495);
CreateObject(987, 801.59998, -2020.30005, 161.10001, 0, 0, 90.495);
CreateObject(987, 801, -2034.09998, 161.10001, 0, 0, 178.495);
CreateObject(987, 789, -2033.80005, 161.10001, 0, 0, 178.495);
CreateObject(987, 786.09998, -2033.69995, 161.10001, 0, 0, 178.495);
CreateObject(987, 774.40002, -2033.40002, 161.10001, 0, 0, 88.495);
CreateObject(987, 774.59998, -2022.5, 161.10001, 0, 0, 88.489);
CreateObject(987, 790.29999, -2008.59998, 161.10001, 0, 0, 0.239);
CreateObject(987, 778.29999, -2008.69995, 161.10001, 0, 0, 0.236);
CreateObject(987, 774.90002, -2008.69995, 161.10001, 0, 0, 0.236);
CreateObject(987, 774.79999, -2020.69995, 161.10001, 0, 0, 88.489);
CreateObject(3528, 801.5, -2022.09998, 166.5, 0, 0, 0);
CreateObject(1698, 802.59998, -2021.90002, 159.89999, 0, 0, 0);
CreateObject(1698, 802.09961, -2021.89941, 160.10001, 0, 0, 0);
CreateObject(1698, 801.79999, -2021.90002, 160.3, 0, 0, 0);
CreateObject(1698, 801.59998, -2021.90002, 160.60001, 0, 0, 0);
CreateObject(1698, 799.70001, -2022, 160, 0, 0, 0);
CreateObject(1698, 800.09998, -2022, 160.2, 0, 0, 0);
CreateObject(1698, 800.59998, -2022, 160.39999, 0, 0, 0);
CreateObject(1698, 800.79999, -2021.90002, 160.7, 0, 0, 0);
CreateObject(711, 825.20001, -1980.19995, 160.39999, 0, 0, 0);
CreateObject(711, 825.09998, -1985.09998, 160.39999, 0, 0, 0);
CreateObject(711, 825.20001, -1989.5, 160.39999, 0, 0, 0);
CreateObject(711, 825.59998, -1992.59998, 160.39999, 0, 0, 0);
CreateObject(711, 825.20001, -1997.69995, 160.39999, 0, 0, 0);
CreateObject(711, 820.20001, -1980.40002, 160.39999, 0, 0, 0);
CreateObject(711, 815.40002, -1980.59998, 160.39999, 0, 0, 0);
CreateObject(711, 811.20001, -1980.30005, 160.39999, 0, 0, 0);
CreateObject(711, 806.79999, -1980.09998, 160.39999, 0, 0, 0);
CreateObject(711, 801.40002, -1980.09998, 160.39999, 0, 0, 0);
CreateObject(711, 796, -1980, 160.39999, 0, 0, 0);
CreateObject(711, 795.5, -1984.69995, 160.39999, 0, 0, 0);
CreateObject(711, 795.40002, -1988.59998, 160.39999, 0, 0, 0);
CreateObject(711, 795.90002, -1993.5, 160.39999, 0, 0, 0);
CreateObject(711, 796, -1998.69995, 160.39999, 0, 0, 0);
CreateObject(711, 796, -2003.30005, 160.39999, 0, 0, 0);
CreateObject(711, 795.90002, -2007.09998, 160.39999, 0, 0, 0);
CreateObject(711, 825, -2004.09998, 160.39999, 0, 0, 0);
CreateObject(711, 825.20001, -2012.40002, 160.39999, 0, 0, 0);
CreateObject(711, 824.90002, -2019.90002, 160.39999, 0, 0, 0);
CreateObject(711, 824.79999, -2031.09998, 160.39999, 0, 0, 0);
CreateObject(711, 825, -2038.09998, 160.39999, 0, 0, 0);
CreateObject(711, 825.29999, -2043.69995, 160.39999, 0, 0, 0);
CreateObject(711, 825.29999, -2049.1001, 160.39999, 0, 0, 0);
CreateObject(711, 825.29999, -2055.3999, 160.39999, 0, 0, 0);
CreateObject(711, 825.29999, -2063, 160.39999, 0, 0, 0);
CreateObject(711, 824.79999, -2067.6001, 160.39999, 0, 0, 0);
CreateObject(711, 819, -2068.19995, 160.39999, 0, 0, 0);
CreateObject(711, 813.40002, -2068.5, 160.39999, 0, 0, 0);
CreateObject(711, 808.20001, -2068.5, 160.39999, 0, 0, 0);
CreateObject(711, 803.90002, -2068.3999, 160.39999, 0, 0, 0);
CreateObject(711, 800, -2068, 160.39999, 0, 0, 0);
CreateObject(711, 795.59998, -2067.80005, 160.39999, 0, 0, 0);
CreateObject(711, 795, -2060.80005, 160.39999, 0, 0, 0);
CreateObject(711, 794.70001, -2057.1001, 160.39999, 0, 0, 0);
CreateObject(711, 794.79999, -2054, 160.39999, 0, 0, 0);
CreateObject(711, 795, -2048.8999, 160.39999, 0, 0, 0);
CreateObject(711, 795.29999, -2044, 160.39999, 0, 0, 0);
CreateObject(711, 796.20001, -2037.19995, 160.39999, 0, 0, 0);
CreateObject(767, 845.5, -2004.5, 154.39999, 0, 0, 0);
CreateObject(767, 844.59998, -2042.69995, 154.39999, 0, 0, 0);
CreateObject(767, 884, -2006.19995, 154.39999, 0, 0, 0);
CreateObject(14409, 825.5, -2022.09998, 157.60001, 0, 0, 269.995);
CreateObject(14409, 811, -2022.09998, 164, 0, 0, 89.995);
CreateObject(14409, 816.39941, -2022.09961, 164, 0, 0, 269.995);
CreateObject(1698, 803.90002, -2021.90002, 159.89999, 0, 0, 0);
CreateObject(1698, 803.90002, -2021.90002, 160.10001, 0, 0, 0);
CreateObject(1698, 803.90002, -2021.90002, 160.3, 0, 0, 0);
CreateObject(1499, 801.5, -2023.19922, 161.10001, 0, 0, 90);
CreateObject(1698, 803.90002, -2021.90002, 160.5, 0, 0, 0);
CreateObject(1280, 876.79999, -2029.90002, 154.8, 0, 0, 326);
CreateObject(1280, 876, -2017.40002, 154.8, 0, 0, 38.25);
CreateObject(1280, 858.90002, -2032.30005, 154.8, 0, 0, 215.997);
CreateObject(1280, 857, -2018.80005, 154.8, 0, 0, 143.997);
CreateObject(1297, 857.59998, -2030.69995, 157.8, 0, 0, 182);
CreateObject(1297, 858.09998, -2016.69995, 157.8, 0, 0, 70);
CreateObject(1297, 877.09998, -2018.80005, 157.8, 0, 0, 331.999);
CreateObject(1297, 875.70001, -2031, 157.8, 0, 0, 275.996);
CreateObject(1676, 881.5, -1961.80005, 156, 0, 0, 0);
CreateObject(1676, 884.5, -1961.80005, 156, 0, 0, 0);
CreateObject(1676, 887.5, -1961.80005, 156, 0, 0, 0);
CreateObject(1676, 890.5, -1961.80005, 156, 0, 0, 0);
CreateObject(1676, 893.40002, -1961.80005, 156, 0, 0, 0);
CreateObject(869, 860, -1996.5, 154.8, 0, 0, 0);
CreateObject(869, 874.09998, -1995.90002, 154.8, 0, 0, 0);
CreateObject(2895, 872.59998, -1999.09998, 154.7, 0, 0, 0);
CreateObject(2895, 872.59998, -2000, 154.7, 0, 0, 0);
CreateObject(2895, 872.59998, -2000.80005, 154.7, 0, 0, 0);
CreateObject(2895, 872.5, -2001.5, 154.7, 0, 0, 0);
CreateObject(2895, 872.5, -2002.40002, 154.7, 0, 0, 0);
CreateObject(2895, 872.5, -2003.09998, 154.7, 0, 0, 0);
CreateObject(2895, 872.5, -2004, 154.7, 0, 0, 0);
CreateObject(2895, 872.5, -2004.90002, 154.7, 0, 0, 0);
CreateObject(2895, 872.5, -2005.59998, 154.7, 0, 0, 0);
CreateObject(2895, 872.59998, -2006.5, 154.7, 0, 0, 0);
CreateObject(2895, 872.70001, -2007.30005, 154.7, 0, 0, 0);
CreateObject(2895, 872.59998, -2008.09998, 154.7, 0, 0, 0);
CreateObject(2895, 872.59998, -2009.09998, 154.7, 0, 0, 0);
CreateObject(2895, 872.70001, -2010.5, 154.7, 0, 0, 0);
CreateObject(2895, 872.70001, -2011.90002, 154.7, 0, 0, 0);
CreateObject(2895, 872.79999, -2013.5, 154.7, 0, 0, 0);
CreateObject(2895, 861.90002, -1999.5, 154.7, 0, 0, 0);
CreateObject(2895, 861.90002, -2001, 154.7, 0, 0, 0);
CreateObject(2895, 861.79999, -2003.19995, 154.7, 0, 0, 0);
CreateObject(2895, 861.79999, -2004.19995, 154.7, 0, 0, 0);
CreateObject(2895, 862, -2000.40002, 154.7, 0, 0, 0);
CreateObject(2895, 861.90002, -2005.09998, 154.7, 0, 0, 0);
CreateObject(2895, 861.90002, -2006.90002, 154.7, 0, 0, 0);
CreateObject(2895, 862, -2002.30005, 154.7, 0, 0, 0);
CreateObject(2895, 861.79999, -2008.40002, 154.7, 0, 0, 0);
CreateObject(2895, 861.90002, -2010.09998, 154.7, 0, 0, 0);
CreateObject(2895, 861.70001, -2011.69995, 154.7, 0, 0, 0);
CreateObject(325, 874.90002, -2016.19995, 154.60001, 0, 0, 0);
CreateObject(325, 877, -2018.90002, 154.60001, 0, 0, 0);
CreateObject(325, 877.59998, -2028.40002, 154.60001, 0, 0, 0);
CreateObject(325, 875.79999, -2031.19995, 154.60001, 0, 0, 0);
CreateObject(325, 860.29999, -2033.40002, 154.60001, 0, 0, 0);
CreateObject(325, 858.20001, -2030.69995, 154.60001, 0, 0, 0);
CreateObject(325, 855.90002, -2020.30005, 154.60001, 0, 0, 0);
CreateObject(325, 857.90002, -2017.40002, 154.60001, 0, 0, 0);

 
Remélem nem csak arra fogjátok használni,hogy kipróbáljátok,és kidobjátok :(
[mod]Scriptet javítottam.[/mod]

7
SA-MP: Szerverfejlesztés / [HUN]BaReLoadSzerver[0.3x]
« Dátum: 2013. Augusztus 14. - 19:48:03 »
SZIASZTOK!
A Mai nap végeztem,az ELSÕ saját GameMode-ommal.

Elkészítési idõ:3nap.Nagyon sokat sz****kodtam vele,nagyon nehéz volt,éjjelekig csináltam.


Hogy miért BaReLoad?Mikör letöltöd az alap Samp szervert,ott van köztük egy \"Bare\"nevû GameMode.


Nekem az elsõ szerveremen,az volt az elsõ GameMode.


És én most elhoztam a továbbfejlesztett változatát!


Maga a Mód alap,de van benne pár map,Parancsok,Scriptek,Kocsik,amiket most lefogok írni.



SCRIPTEK
 
Teleportok: Las Venturas,San Fierro,San Fierro Airport,Parkour,Area51
Jármûvek:Összesen 17db jármû található a játékmódban
Más Scriptek:Register Script
Teleport parancsok:
 

/lv


/sf


/sfair


/a51


/parkour



 
Kocsik:
Nem sorom fel név szerint :D
MÁS SCRIPTEK:

Dialogos Register Script

EGYÉBB PARANCSOK:
/rules - kiírja a szabályokat
Hát naggyából ennyi.Egészen az elkészítés végéig úgy volt,hogy felhasználom,de túl alap,szerintem ez kezdõknek jó,vagy esetleg tesztszervernek.
Bármikor szerkesztheted,DE A NEVEMET MINDENKÉPP TÜNTESD FEL,HA TESZTSZERVER,HA HASZNÁLOD,HA SZERKESZTED!!!!!
Remélem valakinek majd jól jön :)
Dupla hozzászólás automatikusan összefûzve. ( 2013. Augusztus 14. - 19:55:28 )
OPP A LETÖLTÉSI LINKET MEG KIHAGYTAM -.-

Letöltéshez KLIKK!!! http://www.solidfiles.com/d/5a1edbc145/!!!!!!
  :laugh:  :laugh:  :laugh:

8
SA-MP: Szerverfejlesztés / DeathRace By:SuspecT
« Dátum: 2013. Augusztus 13. - 23:06:51 »
ÜDV MINDENKINEK!
A mai napon szeretném publikálni a \"DeathRace\" Mappomat.
De mivel ez a Map \"külõngleges\" módon jött létre,ezért leírnám a történetét :D
TÖRTÉNET
Unatkoztam...Nem tudtam mit kezdeni magammal.És akkor gondolkoztam.

És \'rágyüttem\',illetve eszembe jutott a HalálFutam.És beléptem az MTA-ba.


És elkezdtem.A Map nem valami nagy,viszont a végét nagyon nehéz átvinni.


Santa Maria Beach-ben van.Mielõtt leírnám a cucckombókat,elõtte mondanám az AJÁNLATOS DOLGOKAT.


Ajánlott Scriptek: Egyszerû Nitró Script,Autómata Repair Script.


A végén van egy kis jutalom..



Kicsi
Kicsi
Kicsi
Egy csomó pénzes táska,és a földön szétszorva egy csomó pénz...:DD


NA AKKOR! :D
KÉPEK
 
\"QE5BWEtvAwMCVQ9EFAVQ\"
\"QE5BWEtvAwMCVQ9EFwVQ\"
JUTALOMPÉNZ KÉPEK(Csak egy van :D)
\"QE5BWEtvAwMCVQ9EFgVQ\"
TELEPORT
 
command(deathrace, playerid, params[])
{
      if(!IsPlayerInAnyVehicle(playerid))
{
         SetPlayerPos(playerid,280,636.7618,-1930.9814,1);
         SetPlayerFacingAngle(playerid,126.5343);
         SetPlayerInterior(playerid,0);
         SendClientMessage(playerid,COLOR_LIGHTBLUED,\"Elteleportáltál a DeathRace-ra!\");
      }
else
      {
        SetVehiclePos(GetPlayerVehicleID(playerid),(280,636.7618,-1930.9814,1);
         SetVehicleZAngle(GetPlayerVehicleID(playerid),126.5343);
         SetPlayerInterior(playerid,0);
         LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
         SendClientMessage(playerid,COLOR_LIGHTBLUED,\"Elteleportáltál a DeathRace-ra!\");
     }
return 1;
}

 
MAP
Sorok:146
 
CreateObject(2683, -820.90002, 2618.1001, 139.89999, 0, 0, 0);
CreateObject(2768, -820.70001, 2618.1001, 139.8, 0, 0, 0);
CreateObject(2837, -820.41406, 2617.78027, 138.99532, 0, 0, 0);
CreateObject(2840, -820.70001, 2618.80005, 139.8, 0, 0, 0);
CreateObject(2858, -820.5, 2618.3999, 139.8, 0, 0, 0);
CreateObject(8171, 638.29999, -2075.8999, 0, 0, 0, 0);
CreateObject(8171, 637.79999, -2195.1001, 0, 0, 0, 0);
CreateObject(8171, 637.69922, -2267.19922, 0, 0, 0, 0.25);
CreateObject(8171, 638, -2393.19995, 0, 0, 0, 0);
CreateObject(8171, 638.5, -1963, 0, 0, 0, 0);
CreateObject(18275, 642.5, -2005.5, 2.2, 0, 0, 0);
CreateObject(18275, 634.59998, -2005.40002, 2.2, 0, 0, 0);
CreateObject(987, 619.20001, -2005.09998, 0, 0, 0, 0);
CreateObject(987, 646.5, -2005, 0.3, 0, 0, 0);
CreateObject(3524, 638.5, -2005, 2.9, 0, 0, 180);
CreateObject(354, 639.59998, -2005, 1.8, 0, 0, 0);
CreateObject(354, 637.59998, -2004.90002, 1.8, 0, 0, 0);
CreateObject(1631, 646.09998, -2354.69995, 0, 0, 0, 179.495);
CreateObject(2934, 629.5, -2367.8999, 1.5, 0, 0, 0);
CreateObject(2934, 626.40002, -2367.8999, 1.5, 0, 0, 0);
CreateObject(2934, 626.40002, -2367.8999, 4.4, 0, 0, 0);
CreateObject(2934, 629.70001, -2367.8999, 4.4, 0, 0, 0);
CreateObject(8171, 638, -2468.80005, 0, 0, 0, 0);
CreateObject(8171, 655.29999, -2558.69995, 0, 0, 16, 22.25);
CreateObject(8171, 640.29999, -2564.8999, 4, 0, 15.996, 22.247);
CreateObject(1237, 649.09998, -2484.19995, 0, 0, 0, 0);
CreateObject(1237, 649.90002, -2485.69995, 0, 0, 0, 0);
CreateObject(1237, 651, -2487.6001, 0, 0, 0, 0);
CreateObject(1237, 652.29999, -2489.69995, 0, 0, 0, 0);
CreateObject(1237, 653.20001, -2492.30005, 0, 0, 0, 0);
CreateObject(1237, 654, -2495.19995, 0, 0, 0, 0);
CreateObject(1237, 654.40002, -2497.69995, 0, 0, 0, 0);
CreateObject(1237, 654.70001, -2501.5, 0, 0, 0, 0);
CreateObject(1237, 653.90002, -2504.5, 0, 0, 0, 0);
CreateObject(1237, 653.20001, -2507.8999, 0, 0, 0, 0);
CreateObject(1237, 651.90002, -2511.19995, 0, 0, 0, 0);
CreateObject(1237, 650.09998, -2513.69995, 0, 0, 0, 0);
CreateObject(1237, 648.90002, -2516.5, 0, 0, 0, 0);
CreateObject(1237, 647.29999, -2518.80005, 0, 0, 0, 0);
CreateObject(1237, 627.70001, -2567.19995, 7.6, 0, 0, 0);
CreateObject(1237, 643.59998, -2523.6001, 0, 0, 0, 0);
CreateObject(8171, 678.09998, -2617.5, 0, 0, 345.996, 22.247);
CreateObject(1237, 645.2998, -2520.69922, 0, 0, 0, 0);
CreateObject(1237, 626.19922, -2565.5, 7.8, 0, 0, 0);
CreateObject(1237, 629, -2568.80005, 7.4, 0, 0, 0);
CreateObject(1237, 630.70001, -2570.5, 7.1, 0, 0, 0);
CreateObject(1237, 632.29999, -2571.80005, 6.9, 0, 0, 0);
CreateObject(1237, 634.09998, -2573.1001, 6.5, 0, 0, 0);
CreateObject(1237, 636.09998, -2574.5, 6.2, 0, 0, 0);
CreateObject(1237, 638.09998, -2575.6001, 5.7, 0, 0, 0);
CreateObject(1237, 640.20001, -2576.69995, 5.3, 0, 0, 0);
CreateObject(1237, 704.29999, -2638.5, 4.1, 0, 0, 0);
CreateObject(1237, 643.79999, -2577.69995, 5.1, 0, 0, 0);
CreateObject(1237, 646.59998, -2578.5, 4.5, 0, 0, 0);
CreateObject(1237, 648.79999, -2579.1001, 3.9, 0, 0, 0);
CreateObject(1237, 651.09998, -2579.69995, 3.4, 0, 0, 0);
CreateObject(1237, 653, -2580, 2.9, 0, 0, 0);
CreateObject(1237, 654.70001, -2580.3999, 2.5, 0, 0, 0);
CreateObject(1237, 656.29999, -2580.69995, 2.1, 0, 0, 0);
CreateObject(1237, 657.90002, -2580.8999, 1.7, 0, 0, 0);
CreateObject(1237, 659.70001, -2581.1001, 1.3, 0, 0, 0);
CreateObject(1237, 660.79999, -2581.1001, 1, 0, 0, 0);
CreateObject(8171, 718.09998, -2715.69995, 0, 0, 359.992, 21.747);
CreateObject(1237, 662.2998, -2581.19922, 0.6, 0, 0, 0);
CreateObject(1237, 704.59998, -2640.6001, 3.9, 0, 0, 0);
CreateObject(1237, 704.70001, -2642.3999, 3.8, 0, 0, 0);
CreateObject(1237, 704.70001, -2644.69995, 3.6, 0, 0, 0);
CreateObject(1237, 704.5, -2646.6001, 3.3, 0, 0, 0);
CreateObject(1237, 704.20001, -2648.30005, 3.1, 0, 0, 0);
CreateObject(1237, 703.5, -2649.8999, 2.8, 0, 0, 0);
CreateObject(1237, 703.20001, -2651.6001, 2.6, 0, 0, 0);
CreateObject(1237, 702.59998, -2653.19995, 2.3, 0, 0, 0);
CreateObject(1237, 702.20001, -2654.8999, 2, 0, 0, 0);
CreateObject(1237, 701.79999, -2656.19995, 1.8, 0, 0, 0);
CreateObject(8171, 678.09961, -2617.5, 0, 0, 345.992, 22.247);
CreateObject(1237, 701.20001, -2657.3999, 1.6, 0, 0, 0);
CreateObject(1237, 700.79999, -2658.69995, 1.3, 0, 0, 0);
CreateObject(1237, 700.29999, -2659.80005, 1.1, 0, 0, 0);
CreateObject(1237, 699.59998, -2660.8999, 0.9, 0, 0, 0);
CreateObject(1237, 698.90002, -2662.19995, 0.6, 0, 0, 0);
CreateObject(1237, 698.20001, -2663.30005, 0.3, 0, 0, 0);
CreateObject(9958, 731.20001, -2727.80005, 10.3, 0, 0, 22);
CreateObject(13607, 751.20001, -2823.5, 13.6, 0, 0, 3.999);
CreateObject(355, 723.16699, -2808.20312, 10.16674, 0, 0, 0);
CreateObject(987, 756.79999, -2809.8999, 10.1, 0, 0, 272);
CreateObject(987, 757.20001, -2821.69995, 10.1, 0, 0, 182);
CreateObject(987, 745.09998, -2810.30005, 10.1, 0, 0, 272);
CreateObject(1237, 753.09998, -2813.1001, 10.1, 0, 0, 0);
CreateObject(1237, 753.40002, -2815.19995, 10.1, 0, 0, 0);
CreateObject(1237, 753.09998, -2817.30005, 10.1, 0, 0, 0);
CreateObject(1237, 752, -2818.1001, 10.1, 0, 0, 0);
CreateObject(1237, 750.70001, -2818.3999, 10.1, 0, 0, 0);
CreateObject(1237, 749.29999, -2818.6001, 10.1, 0, 0, 0);
CreateObject(1237, 748.09998, -2818.1001, 10.1, 0, 0, 0);
CreateObject(1237, 747.70001, -2816.69995, 10.1, 0, 0, 0);
CreateObject(1237, 747.70001, -2815.19995, 10.1, 0, 0, 0);
CreateObject(1237, 747.90002, -2813.80005, 10.1, 0, 0, 0);
CreateObject(1550, 752.20001, -2813.69995, 10.5, 0, 0, 0);
CreateObject(1550, 752.29999, -2814.69995, 10.5, 0, 0, 0);
CreateObject(1550, 752.40002, -2815.5, 10.5, 0, 0, 0);
CreateObject(1550, 751.29999, -2814.8999, 10.5, 0, 86, 0);
CreateObject(1550, 751.59998, -2813.80005, 10.5, 0, 34, 6);
CreateObject(1550, 751, -2815.8999, 10.5, 0, 85.995, 0);
CreateObject(1550, 748.59998, -2813.80005, 10.5, 0, 337.995, 354);
CreateObject(1550, 749.09998, -2813.6001, 10.5, 0, 325.994, 7.996);
CreateObject(1550, 750.59998, -2814.19995, 10.5, 0, 266, 7.993);
CreateObject(1212, 752.79999, -2813.8999, 10.1, 0, 0, 0);
CreateObject(1212, 752.20001, -2814.19995, 10.1, 0, 0, 0);
CreateObject(1212, 752, -2814.30005, 10.1, 0, 0, 0);
CreateObject(1212, 751.79999, -2814.30005, 10.1, 0, 0, 0);
CreateObject(1212, 751.40002, -2814.30005, 10.1, 0, 0, 0);
CreateObject(1212, 752, -2815.30005, 10.1, 0, 0, 0);
CreateObject(1212, 751.90002, -2815.1001, 10.1, 0, 0, 0);
CreateObject(1212, 751.5, -2815.19995, 10.7, 0, 0, 0);
CreateObject(1212, 751.70001, -2815.6001, 10.1, 0, 0, 0);
CreateObject(1212, 750.70001, -2815.6001, 10.1, 0, 0, 0);
CreateObject(1212, 750.90002, -2815.19995, 10.1, 0, 0, 0);
CreateObject(1212, 751, -2815.5, 10.1, 0, 0, 0);
CreateObject(1212, 751.20001, -2814.19995, 10.1, 0, 0, 0);
CreateObject(1212, 750.59998, -2813.69995, 10.1, 0, 0, 0);
CreateObject(1212, 750.79999, -2813.6001, 10.1, 0, 0, 0);
CreateObject(1212, 751, -2813.80005, 10.1, 0, 0, 0);
CreateObject(1212, 750.70001, -2814.6001, 10.1, 0, 0, 0);
CreateObject(1212, 750.5, -2815, 10.1, 0, 0, 0);
CreateObject(1212, 750.40002, -2815.5, 10.1, 0, 0, 0);
CreateObject(1212, 749.90002, -2815.19995, 10.1, 0, 0, 0);
CreateObject(1212, 750.09998, -2814.8999, 10.1, 0, 0, 0);
CreateObject(1212, 750.29999, -2815.19995, 10.1, 0, 0, 0);
CreateObject(1212, 749.79999, -2814.3999, 10.1, 0, 0, 0);
CreateObject(1212, 750.20001, -2814.3999, 10.7, 0, 0, 0);
CreateObject(1212, 749.79999, -2813.80005, 10.1, 0, 0, 0);
CreateObject(1212, 750.20001, -2813.80005, 10.1, 0, 0, 0);
CreateObject(1212, 750, -2814, 10.1, 0, 0, 0);
CreateObject(1212, 749.5, -2814.1001, 10.1, 0, 0, 0);
CreateObject(1212, 749.40002, -2814.30005, 10.1, 0, 0, 0);
CreateObject(1212, 749.70001, -2814.6001, 10.1, 0, 0, 0);
CreateObject(1212, 752.90002, -2814.6001, 10.1, 0, 0, 0);
CreateObject(1212, 753.20001, -2814.19995, 10.1, 0, 0, 0);
CreateObject(1212, 753.40002, -2814.69995, 10.1, 0, 0, 0);
CreateObject(1212, 752.90002, -2814.30005, 10.1, 0, 0, 0);
CreateObject(1212, 751.70001, -2814.6001, 10.1, 0, 0, 0);
CreateObject(981, 638, -2325.69995, 0, 0, 0, 270.5);
CreateObject(981, 638.09998, -2355, 0, 0, 0, 270.5);
CreateObject(1631, 628.89941, -2354.69922, 0, 0, 0, 179.495);
CreateObject(13641, 729.09998, -2762.6001, 0, 0, 338, 292);

 
Remélem valaki hasznát veszi. :)

9
SA-MP: Szerverfejlesztés / [T]Stunt
« Dátum: 2013. Augusztus 12. - 15:05:00 »
Sziasztok!
Elhoztam nektek az elsõ sikeres mapomat,ami Stunt.Elneveztem [T]Stunt-nak.

De térjünk a lényegre :D


A Sivatagi reptéren van,nem hosszú,van aki 30mp alatt ki tudja vinni.DE CSAK AKI NAGYON JÓL STUNTOL!!


A pálya maga nem nagy,viszont vannak részek,ahol nagyon nagyokat kell ugrasztani.


Ajánlott hozzá: Automata jármû javitó Script,És valami egyszerûbb Nitró Script-et is rakjatok be.Bár én csak a végén használtam nitrót :DDD

:::::FONTOSABB INFÓK:::::
Elkészítési idõ: 3 óra.(Most pár hete kezdtem el Mappolni,úgy hogy mielött írnál egy kommentet,nézd végig az infókat.)

Objectek:-NEM TUDOM-



:::::KÉPEK:::::
\"QE5ADktvAwMCVQlOQAVR\"
\"QE5ADktvAwMCVQlOQwVR\"
\"QE5ADktvAwMCVQlOQgVR\"
\"QE5ADktvAwMCVQlORQVR\"
\"QE5ADktvAwMCVQlORAVR\"
Ja!!???El is felejtettem mondani,hogy ha SIKERÜL Végigvinni a pályát,akkor a végén van egy jutalom ház :)


:::::JUTALOMHÁZRÓL A KÉPEK:::::
\"QE5ADktvAwMCVQlORwVR\"
\"QE5ADktvAwMCVQlJEQVR\"
Hát ennyi lenne..:D
TELEPORT
 
CMD:aa(playerid, params[])
{
        new name[MAX_PLAYER_NAME+1], string[128];
    GetPlayerName(playerid, name, sizeof(name));
    format(string, sizeof(string), \"{0000FF}%s {FFFF00}Elteleportált a Sivatagi reptérre{FF0000}(/aa)\",name);
    SendClientMessageToAll(0xFFFF00AA, string);
    if(IsPlayerInAnyVehicle(playerid))
    {
        SetVehiclePos(GetPlayerVehicleID(playerid),405.6033,2451.7056,16.5461);
    } else {
        SetPlayerPos(playerid,384.5420,2436.4290,16.5263);
    }
    return 1;
}

 
Map
 
CreateObject(3080, 301.10001, 2500.80005, 16.8, 0, 2, 90);
CreateObject(18483, 232.5, 2501.19995, 32.9, 0, 16, 0);
CreateObject(8171, 130.2, 2499.6001, 42.4, 0, 0, 272);
CreateObject(7980, 75.8, 2498.3999, 44.4, 0, 0, 2);
CreateObject(8171, -16.9, 2496.1001, 42.4, 0, 2, 270);
CreateObject(3633, 40.7, 2493.1001, 42.8, 0, 0, 0);
CreateObject(3633, 38.2, 2493.19995, 42.8, 0, 0, 0);
CreateObject(3633, 38.3, 2494.80005, 42.8, 0, 0, 0);
CreateObject(3633, 40.6, 2494.80005, 42.8, 0, 0, 0);
CreateObject(3633, 40.3, 2497, 42.8, 0, 0, 0);
CreateObject(3633, 38.1, 2497, 42.8, 0, 0, 0);
CreateObject(3633, 36, 2493.30005, 42.8, 0, 0, 0);
CreateObject(3633, 36.1, 2495, 42.8, 0, 0, 0);
CreateObject(3633, 36.2, 2497.19995, 42.8, 0, 0, 0);
CreateObject(3633, 33.7, 2497.30005, 42.8, 0, 0, 0);
CreateObject(3633, 33.6, 2495.30005, 42.8, 0, 0, 0);
CreateObject(3633, 33.5, 2493.6001, 42.8, 0, 0, 0);
CreateObject(3633, 33.5, 2493.59961, 42.8, 0, 0, 0);
CreateObject(3633, 40.3, 2498.80005, 42.8, 0, 0, 0);
CreateObject(3633, 38.1, 2498.8999, 42.8, 0, 0, 0);
CreateObject(3633, 35.6, 2499, 42.8, 0, 0, 0);
CreateObject(3633, 33.4, 2499.1001, 42.8, 0, 0, 0);
CreateObject(987, 73.5, 2487.8999, 46.4, 0, 0, 2);
CreateObject(987, 73.8, 2486.8999, 46.4, 0, 0, 2);
CreateObject(987, 74.1, 2485.69995, 46.4, 0, 0, 2);
CreateObject(987, 70, 2504.5, 46.4, 0, 0, 2);
CreateObject(987, 69.7, 2505.5, 46.4, 0, 0, 2);
CreateObject(987, 69.8, 2506.80005, 46.4, 0, 0, 2);
CreateObject(18387, -211.7, 2513.6001, 70.8, 0, 0, 348);
CreateObject(3633, -165.8, 2493.3999, 65.9, 0, 0, 0);
CreateObject(3633, -165.89999, 2494.8999, 65.9, 0, 0, 0);
CreateObject(3633, -180.5, 2488.19995, 68.3, 0, 0, 0);
CreateObject(3633, -180.5, 2490, 68.3, 0, 0, 0);
CreateObject(3633, -189.89999, 2493.69995, 70.2, 0, 0, 0);
CreateObject(3633, -190.2, 2495.3999, 70.2, 0, 0, 0);
CreateObject(3633, -200.7, 2490, 71.9, 0, 0, 0);
CreateObject(3633, -200.8, 2491.80005, 72, 0, 0, 0);
CreateObject(3633, -219.7, 2497.1001, 75.2, 0, 0, 0);
CreateObject(3633, -221.8, 2498, 75.5, 0, 0, 0);
CreateObject(3633, -224.3, 2499.19995, 75.9, 0, 0, 0);
CreateObject(3633, -226.7, 2500, 76.2, 0, 0, 0);
CreateObject(3633, -229.2, 2500.80005, 76.5, 0, 0, 0);
CreateObject(3633, -232.2, 2502.5, 76.9, 0, 0, 0);
CreateObject(3633, -236, 2504.69995, 77.4, 0, 0, 0);
CreateObject(3633, -239.10001, 2506.5, 77.8, 0, 0, 0);
CreateObject(3633, -242.39999, 2508.3999, 78.1, 0, 0, 0);
CreateObject(3633, -245.39999, 2510.30005, 78.4, 0, 0, 0);
CreateObject(3633, -249.10001, 2512.6001, 78.7, 0, 0, 0);
CreateObject(3633, -218.5, 2502, 75.2, 0, 0, 0);
CreateObject(3633, -221, 2503, 75.6, 0, 0, 0);
CreateObject(3633, -223.3, 2504, 76, 0, 0, 0);
CreateObject(3633, -225.2, 2504.5, 76.3, 0, 0, 0);
CreateObject(3633, -227.10001, 2505.5, 76.5, 0, 0, 0);
CreateObject(3633, -229.2, 2506.6001, 76.8, 0, 0, 0);
CreateObject(3633, -232.8, 2508.6001, 77.3, 0, 0, 0);
CreateObject(3633, -230.89999, 2507.5, 77.1, 0, 0, 0);
CreateObject(3633, -234.2, 2503.69995, 77.2, 0, 0, 0);
CreateObject(3633, -235.39999, 2510.5, 77.7, 0, 0, 0);
CreateObject(3633, -238.7, 2512.80005, 78, 0, 0, 0);
CreateObject(3633, -241.60001, 2514.3999, 78.3, 0, 0, 0);
CreateObject(3633, -244, 2515.8999, 78.6, 0, 0, 0);
CreateObject(13641, -273.70001, 2542, 77.8, 0, 346, 128);
CreateObject(4644, -341.79999, 2577.5, 97.2, 0, 356, 130);
CreateObject(987, -342.5, 2640.3999, 94.9, 0, 0, 308);
CreateObject(987, -351.60001, 2633, 94.9, 0, 0, 39.996);
CreateObject(18480, -449.70001, 2536.6001, 105.1, 0, 0, 40);
CreateObject(1632, -490.29999, 2501.8999, 106.3, 0, 0, 130);
CreateObject(18480, -699.29999, 2526.19995, 124.6, 0, 0, 310);
CreateObject(3633, -716, 2546, 124.8, 0, 0, 0);
CreateObject(3633, -714.40002, 2547.19995, 124.8, 0, 0, 0);
CreateObject(3633, -712.79999, 2548.80005, 124.8, 0, 0, 0);
CreateObject(3633, -711.29999, 2550.30005, 124.8, 0, 0, 0);
CreateObject(3633, -710, 2548.80005, 124.8, 0, 0, 0);
CreateObject(3633, -711.5, 2547.3999, 124.8, 0, 0, 0);
CreateObject(3633, -713.29999, 2545.80005, 124.8, 0, 0, 0);
CreateObject(3633, -714.90002, 2544.5, 124.8, 0, 0, 0);
CreateObject(3633, -713.59998, 2542.8999, 124.8, 0, 0, 0);
CreateObject(3633, -711.79999, 2544.30005, 124.8, 0, 0, 0);
CreateObject(3633, -710, 2545.80005, 124.8, 0, 0, 0);
CreateObject(3633, -708.40002, 2547.30005, 124.8, 0, 0, 0);
CreateObject(3633, -712, 2541, 124.8, 0, 0, 0);
CreateObject(3633, -710.5, 2542.6001, 124.8, 0, 0, 0);
CreateObject(3633, -708.70001, 2544.30005, 124.8, 0, 0, 0);
CreateObject(3633, -706.90002, 2545.80005, 124.8, 0, 0, 0);
CreateObject(3633, -705.5, 2544.1001, 124.8, 0, 0, 0);
CreateObject(3633, -707.20001, 2542.69995, 124.8, 0, 0, 0);
CreateObject(3633, -708.79999, 2540.8999, 124.8, 0, 0, 0);
CreateObject(3633, -710.5, 2539.3999, 124.8, 0, 0, 0);
CreateObject(3633, -709, 2537.6001, 124.8, 0, 0, 0);
CreateObject(3633, -707.29999, 2539, 124.8, 0, 0, 0);
CreateObject(3633, -705.5, 2540.69995, 124.8, 0, 0, 0);
CreateObject(3633, -703.90002, 2542.19995, 124.8, 0, 0, 0);
CreateObject(3633, -702.20001, 2540.3999, 124.8, 0, 0, 0);
CreateObject(3633, -704, 2539.1001, 124.8, 0, 0, 0);
CreateObject(3633, -706, 2537.3999, 124.8, 0, 0, 0);
CreateObject(3633, -707.70001, 2535.8999, 124.8, 0, 0, 0);
CreateObject(3633, -706.40002, 2534.19995, 124.8, 0, 0, 0);
CreateObject(3633, -704.59998, 2535.69995, 124.8, 0, 0, 0);
CreateObject(3633, -702.70001, 2537.30005, 124.8, 0, 0, 0);
CreateObject(3633, -701, 2538.69995, 124.8, 0, 0, 0);
CreateObject(3633, -699.79999, 2537.1001, 124.8, 0, 0, 0);
CreateObject(3633, -701.5, 2535.5, 124.8, 0, 0, 0);
CreateObject(3633, -703.29999, 2534, 124.8, 0, 0, 0);
CreateObject(3633, -705.09998, 2532.5, 124.8, 0, 0, 0);
CreateObject(3633, -717.59998, 2544.3999, 124.8, 0, 0, 0);
CreateObject(3633, -716.5, 2543, 124.8, 0, 0, 0);
CreateObject(3633, -715.20001, 2541.5, 124.8, 0, 0, 0);
CreateObject(3633, -713.59998, 2539.69995, 124.8, 0, 0, 0);
CreateObject(3633, -712.09998, 2537.80005, 124.8, 0, 0, 0);
CreateObject(3633, -710.70001, 2536.3999, 124.8, 0, 0, 0);
CreateObject(3633, -709.20001, 2534.69995, 124.8, 0, 0, 0);
CreateObject(3633, -707.90002, 2532.8999, 124.8, 0, 0, 0);
CreateObject(3633, -706.59998, 2531.3999, 124.8, 0, 0, 0);
CreateObject(13645, -700.59998, 2527.3999, 125.3, 0, 0, 38);
CreateObject(13645, -721.29999, 2554.6001, 125.3, 0, 0, 219.996);
CreateObject(13645, -698.79999, 2528.69995, 125.3, 0, 0, 37.996);
CreateObject(13645, -722.90002, 2553.30005, 125.3, 0, 0, 217.991);
CreateObject(8171, -97.6, 2457.1001, 41.9, 0, 0, 312);
CreateObject(7073, -132.39999, 2407, 59.4, 0, 0, 0);
CreateObject(7073, -139, 2416.19995, 59.4, 0, 0, 0);
CreateObject(7073, -147.8, 2423.69995, 59.4, 0, 0, 0);
CreateObject(7073, -147.8, 2432.19995, 59.4, 0, 0, 0);
CreateObject(7073, -140.5, 2428, 59.4, 0, 0, 0);
CreateObject(7073, -134.8, 2432.5, 59.4, 0, 0, 0);
CreateObject(7073, -129.3, 2427.5, 59.4, 0, 0, 0);
CreateObject(7073, -132.3, 2418, 59.4, 0, 0, 0);
CreateObject(7073, -124.5, 2414.5, 59.4, 0, 0, 0);
CreateObject(7073, -123.5, 2422.5, 59.4, 0, 0, 0);
CreateObject(7073, -125.5, 2433.69995, 59.4, 0, 0, 0);
CreateObject(7073, -131.5, 2438.19995, 59.4, 0, 0, 0);
CreateObject(7073, -116, 2426.69995, 59.4, 0, 0, 0);
CreateObject(7073, -117.3, 2435.8999, 59.4, 0, 0, 0);
CreateObject(7073, -121.8, 2442.3999, 59.4, 0, 0, 0);
CreateObject(7073, -124.1, 2451.6001, 59.4, 0, 0, 0);
CreateObject(7073, -117.6, 2448.8999, 59.4, 0, 0, 0);
CreateObject(7073, -114.6, 2443.3999, 59.4, 0, 0, 0);
CreateObject(7073, -113.1, 2433.3999, 59.4, 0, 0, 0);
CreateObject(7073, -113.09961, 2433.39941, 59.4, 0, 0, 0);
CreateObject(8171, -103.7, 2477.5, 41.9, 0, 2, 359.995);
CreateObject(18393, -104.8, 2494.19995, 61.7, 0, 11.999, 2);
CreateObject(13641, -46.6, 2496.3999, 42.5, 0, 342, 178);
CreateObject(18480, -554.70001, 2448.3999, 112.7, 0, 0, 39.996);
CreateObject(18480, -610.5, 2421.30005, 112.7, 0, 4, 309.996);
CreateObject(7073, -579.5, 2374.69995, 123.4, 0, 358, 284);
CreateObject(7073, -573.39941, 2370.19922, 122.5, 0, 357.995, 283.997);
CreateObject(7073, -569.90002, 2373.69995, 122.3, 0, 357.995, 283.997);
CreateObject(7073, -564.70001, 2375.8999, 122.2, 0, 357.995, 283.997);
CreateObject(7073, -567.70001, 2380.5, 122.9, 0, 357.995, 283.997);
CreateObject(7073, -574.5, 2381.69922, 123.5, 0, 357.995, 283.997);
CreateObject(7073, -580.40002, 2382.80005, 124.2, 0, 357.995, 283.997);
CreateObject(7073, -585.70001, 2382.80005, 124.8, 0, 357.995, 283.997);
CreateObject(7073, -587.5, 2388.69995, 125.5, 0, 357.995, 283.997);
CreateObject(7073, -581.5, 2388.80005, 124.9, 0, 357.995, 283.997);
CreateObject(7073, -573.79999, 2387.80005, 124.3, 0, 357.995, 283.997);
CreateObject(7073, -581.79999, 2398.30005, 126.1, 0, 357.995, 283.997);
CreateObject(7073, -588.70001, 2394.80005, 126.2, 0, 357.995, 283.997);
CreateObject(7073, -595, 2395.69995, 126.9, 0, 357.995, 283.997);
CreateObject(7073, -588.29999, 2400.8999, 126.8, 0, 357.995, 283.997);
CreateObject(987, -590.20001, 2407.1001, 112.8, 0, 0, 46);
CreateObject(987, -599.5, 2397.80005, 112.8, 0, 0, 46);
CreateObject(987, -606.40002, 2402, 112.8, 0, 0, 318);
CreateObject(987, -616.09998, 2411.6001, 112.8, 0, 0, 317.999);
CreateObject(13641, -637.20001, 2454.5, 117.1, 0, 336, 132);
CreateObject(13592, -760.20001, 2600.30005, 136.10001, 0, 2, 134);
CreateObject(18480, -762.29999, 2602.69995, 124.6, 0, 0, 309.996);
CreateObject(987, -812.5, 2649.19995, 124.7, 0, 0, 40);
CreateObject(987, -806.5, 2654.19995, 124.7, 0, 0, 39.996);
CreateObject(987, -804.59998, 2652.6001, 124.7, 0, 0, 39.996);
CreateObject(987, -811, 2647.6001, 124.7, 0, 0, 39.996);
CreateObject(987, -809.90002, 2646.6001, 124.7, 0, 0, 39.996);
CreateObject(987, -804.40002, 2652.5, 124.7, 0, 0, 39.996);
CreateObject(987, -803.59998, 2651.80005, 124.7, 0, 0, 39.996);
CreateObject(987, -809, 2645.19995, 124.7, 0, 0, 39.996);
CreateObject(987, -803.5, 2650.69995, 124.7, 0, 0, 39.996);
CreateObject(987, -802.70001, 2650, 124.7, 0, 0, 39.996);
CreateObject(987, -808.20001, 2645.19995, 124.7, 0, 0, 39.996);
CreateObject(987, -803, 2650.30005, 124.7, 0, 0, 39.996);
CreateObject(987, -803, 2650.2998, 124.7, 0, 0, 39.996);
CreateObject(3599, -825.70001, 2619.1001, 138.2, 0, 0, 92);
CreateObject(1708, -820.40002, 2616.30005, 139.3, 0, 0, 92);
CreateObject(2346, -820.70001, 2619.1001, 139.3, 0, 0, 274);
CreateObject(1708, -820.59998, 2619.69995, 139.3, 0, 0, 92);
CreateObject(2683, -820.90002, 2618.1001, 139.89999, 0, 0, 0);
CreateObject(2768, -820.70001, 2618.1001, 139.8, 0, 0, 0);
CreateObject(2837, -820.41406, 2617.78027, 138.99532, 0, 0, 0);
CreateObject(2840, -820.70001, 2618.80005, 139.8, 0, 0, 0);
CreateObject(2858, -820.5, 2618.3999, 139.8, 0, 0, 0);
CreateObject(3524, -817, 2623.3999, 146.89999, 0, 0, 90);
CreateObject(3524, -821.70001, 2622.6001, 147, 0, 0, 90);
CreateObject(3524, -821.90002, 2619.1001, 146.2, 0, 0, 92);
CreateObject(3524, -821.20001, 2606.1001, 143.3, 0, 0, 92);
CreateObject(3524, -821.59998, 2615.3999, 145.39999, 0, 0, 92);
CreateObject(3524, -817.29999, 2632.3999, 143.3, 0, 0, 92);
CreateObject(7388, -828.70001, 2622.5, 144.10001, 0, 0, 0);
CreateObject(987, -814.59998, 2631.8999, 130, 0, 0, 274);
CreateObject(987, -815.29999, 2637.8999, 130, 0, 0, 273.999);
CreateObject(987, -827.29999, 2638.19995, 130, 0, 0, 1.999);
CreateObject(987, -837.29999, 2637.80005, 130, 0, 0, 1.994);
CreateObject(987, -836, 2625.80005, 130, 0, 0, 95.994);
CreateObject(987, -834.79999, 2613.80005, 130, 0, 0, 95.993);
CreateObject(987, -834, 2604.8999, 130, 0, 0, 95.993);
CreateObject(987, -821.79999, 2605.69995, 130, 0, 0, 183.993);
CreateObject(987, -815.79999, 2606.30005, 130, 0, 0, 183.988);
CreateObject(987, -814.09998, 2617.80005, 130, 0, 0, 271.988);
CreateObject(987, -814, 2606.5, 130, 0, 0, 183.983);

 


Remélem hasznát veszi valaki:)


Egyéb:Szerkesztheted,viszont a nevemet tüntesd fel.


A képeken a jobb oldalon nem tudom mi az a fekete sz**r,sry érte!.


Dupla hozzászólás automatikusan összefûzve. ( 2013. Augusztus 12. - 15:10:04 )

Objectek:-NEMTUDOM- =Nem tudom összesen hány Object-et raktam le,nem néztem!

10
Archívum / DominoLife[Fun&RPG]
« Dátum: 2013. Augusztus 11. - 20:38:26 »
Üdvözlök mindenkit
Elkészült az elsõ sikeres Samp szerverem.

A szerver története:


Már 4 éve Samp-ozok,és minden szervertípust ismerek.Sok szerveren jártam már.


De a legtöbbet a Fun,és az RPG szerverekre.


És mivel én már nagyon szerettem volna saját szervert,hát el is készítettem a saját FUN szerveremet.


Egy ideig jó volt,2-3 player.


Aztán még annyi se volt.Ezért fogtam magam és kitöröltem a szervert.


Majd sok gondolkodás után elkezdtem készíteni egy RPG szervert.Hát nem az a hûde jó szerver volt,


viszont ott már akadt 5-6 player is.


De hiányzott belõle a Fun.A szórakozás.


Kitöröltem ezt a szervert is.


És akkor elkezdtem gondolkozni.Miért ne lehetne a kettõt egyszerre?


El kezdtem a szerver készítését.Mikor kész lett,már csak a nevén törtem a fejem.Abban biztos voltam,


hogy DominoLife.És utána beugrott:Hoppá!Legyen FunRPG!



A szerveren [R.C.B] mód fut,vagy is Rendõrök,civilek,és bünözõk.

A módot nem tudom ki készítette,de aki készítette,az tegyen meg annyit,hogy hozzászólásban leírja a nevét,hogy õ csinálta.


Ladmin4v2 Adminrendszer található benne.


És akkor most a fontosabb infók:

Munkák:
Rendõr
Taxis
Pilóta
Mentõs
Tûzoltó
Katona
Szerelõ
Autótolvaj
Fegyverkereskedõ
Úttisztító
Bérgyilkos
Parancsok:
 

/radio

        - Class FM


        - Rádió 1


        - HARDBASE.FM


        - Kékduna


/robhelp


        - /rob - Játékost ki rabolhatjuk.


        - /bankrob - Bankot rabolhatunk.


        - /fegyverboltrob - Fegyverboltot rabolhatunk.


        - /atmrob - ATM-et rabolhatunk.


        - /hotdogrob - HotDog árust rabolhatunk.


        - /hallrob - A városházát rabolhatunk.




/rules - Játékbeli szabályok.


/commands


/report /anims /hotdog /cola /buyweapons /afk /back /afklist /rob /bankrob /fegyverboltrob /atmrob /hallrob /hotdogrob /betesz /kivesz /egyenleg /givecash /bounty /buyszoba /sellszoba


Munka beli parancsok:


Taxis: /taxit /tc


Mentõs: /heal /medic1 /mc


Rendõr: /k /rcommmands /rcommands2


Pilóta: /pc


Tûzoltó: /t


Szerelõ: /atc /vontat /elhagy


Autótolvaj: /autoc /szállít


Fegyverkereskedõ: /weapons /fc /shellgun


Úttísztító: /tisztít /abbahagy


Bérgyilkos: /bountys


/felmondás - Felmondasz a munkádból


/pontszerzes - Meg tudod hogyan, is kel szerezned pontot, a szerveren.


/tune - Jármû tuningolása. (FIGYELEM!! Csak Wang Cars-nál lehet.)


/bounty - Vérdíj


/tnt - Bankba lévõ, széfajtó felrobbantásahoz kel.


Szerver IP-

Players: x/32


Ping: x


Mode:[HUN]v2.25 - RCB


Map: San Fierro


A szerver weboldala:-



-


Hát ennyi lenne az én szerverem,SZIASZTOK!

11
Archívum / DominoLife[Fun&RPG]
« Dátum: 2013. Augusztus 11. - 18:31:10 »
Sziasztooook!
Beszeretném mutatni a elsõ sikeresen megnyitott szerveremet.

Nos ahogy láthatjátok a neve DominoLife \"[Fun&RPG]\".


Nehogy azthigyjétek,hogy nem tudom mi az a Fun,és mi az az RPG :D


Én nagyon szeretek ilyen típúsú szerverekre járni.


És már régóta készültem,hogy elkészítek egy Rp szervert.El is készült,de nem tetszett annyira.


Majd létrehoztam utána egy Fun szervert is,hátha oda többen is járnak,és még nekem is jó lesz.


De az se volt az igazi.


Majd elkezdtem törni a fejem,és rájöttem,hogy mi lenne,ha vegyesen raknám össze a szervert!?


És akkor jött az ötlet,hogy Rp-zni is lehet majd,mellette pedig rendezek Eventeket,mindenféle találós kérdés,mint egy Fun szerveren.


És hát létrejött. 2013.07.11 A nyitás napja,azaz ma. :D


Ami van benne mód,szerintem azt sokan ismerik: R.C.B  [Rendõrök,Civilek,Bûnözõk].

Munkák:
Rendõr
Tüzoltó
Katona
Taxisofõr
Fegyverkereskedõ
Autótolvaj


És ez maga egy Rp mód lenne,VISZONT fel lehet jönni bármilyen névvel[Nem kell ilyen Rp-s név,hogy Eros_Pista meg ilyenek].

És mivel most nyílt,ezért természetesen Admin TGF az aktív.


Ezért várom minden ember jelentkezését!

Szerver IP: -

Weboldal: -

12
Fórum Archívum (Témák/Fórumok) / Re:Zene = Betépés
« Dátum: 2013. Március 03. - 10:24:47 »
Na én ezt ki se merem próbálni.Ahogy olvastam a kommenteket a témánál,már akkor összesza*tam magam.Mi lenne,ha beraknám a Gates of Hades -t???Áhh még csak gondolni se merek rá...
Lehet hogy valóban fake?Azért az ilyen durvább dolgokat megírhatnátok,amik veletek történtek...

13
Segítségkérés / Nem adja ki.
« Dátum: 2013. Március 03. - 09:29:13 »
Letöltöttem a ladmin-t,amibe ugye van reg rendszer ami dialogos.na minden mûkszik,kivéve a reg rendszert.Nem adja ki a dialogot.Van öszvissz 14 script a szerómba,azt nem adja ki.IGEN csináltam config mappát,log mappát,és users mappát is készítettem a scriptfiles mappába.Mikor bekapcsolom a szervert,akkor betölti h ladmin betöltve...! meg ilyenek,de nem ad ki dialogot,és /reg,/login ezeket hiába írom be,semmi..
Valaki hozzáértõ tudna helpelni?THX

14
Kérdések, Segítség / Jó de mégse
« Dátum: 2013. Március 02. - 21:01:40 »
Jó a netem mert full gyors,de mégsem.Mert 20 belépek mozzilába,várok,és nem jön be.Utána eltelik vagy 2perc és bejön 20.De ugyanígy van ez a GoogleChrome-val,és az Operával is.A gépem Win7-es Teli van hellyel,vírusmentes.Windows Security Essentals vagy valami ilyen neve van,a védettségnek ami a gépen van.És mondom annyira lassú,hogy az valami hihetetlen.
Válaszokat elõre is köszönöm.
UI:Ha netán ez a vírusírtó sz*r lenne,akkor valami linket dobhatnátok egy fa*zábbról.
Suspect

Dupla hozzászólás automatikusan összefûzve. ( 2013. Március 02. - 21:04:43 )

Addig megyek fürdeni az ilyen 20 perc:D

15
Kérdések, Segítség / Van még több is?
« Dátum: 2013. Március 02. - 09:43:25 »
Csak annyi kérdésem lenne,hogy a gtaforum.hu is a tietek?
Mert ott kb ugyanilyen minden.És csak azért kérdem,mert én
most bizonytalan vagyok.Lehet hogy Copy,de lehet hogy az az oldal is a tietek.

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