Quantcast
Channel: SA-MP Forums
Viewing all 18226 articles
Browse latest View live

version `GLIBCXX_3.4.14' not found

$
0
0
Anyone who has gone through please help me. I used Centos 6 but had this problem with SQL R41, although I tried many ways but still couldn't boot.

There are also
Code:

[Failed (/usr/lib/libstdc++.so.6: version `` GLIBCXX_3.4.19 '')
and
Code:

[Failed (/usr/lib/libstdc++.so.6: version `` CXXABI_1.3.9 '' not found]
please help me .

TextDraw Editor

$
0
0
Hey, so i'd need help in a adri1's textdraw editor "TDEditor"
I'm unable to have it work.
when i do /text the dialog appears but when i select anything it doesn't shows anything.
Thats one of the only TextDraw Editors who atleast compile with me somehow.

These are the files of the filterscripts which i used with the pawno file included too https://gofile.io/?c=K4lP0j

This is the original link of the FS : https://forum.sa-mp.com/showthread.php?t=543002

Thank you for your time!

warning 203: symbol is never used: "id"

$
0
0
public OnGameModeInit()
{

static
arrVirtualWorlds[2000],
id = -1;
WeatherRotator();

SQL_Connect();
ManualVehicleEngineAndLights();
new rcon[80];
format(rcon, sizeof(rcon), "hostname %s", SERVER_NAME);
SendRconCommand(rcon);
format(rcon, sizeof(rcon), "weburl %s", SERVER_URL);
SendRconCommand(rcon);
SetGameModeText(SERVER_REVISION);

MySQL is Duplicating

$
0
0
Hello
I Have This on Register Section
PHP Code:

mysql_format(DatabaseDB_Querysizeof(DB_Query), "INSERT INTO `accounts` (`Name`, `Password`, `SALT`, `RegisterDate`, `Score`, `Kills`, `Money`, `Deaths`)\
                VALUES ('%e', '%s', '%e', NOW(), '0', '0', '0', '0')"
pInfo[playerid][Name], pInfo[playerid][Password], pInfo[playerid][Salt]);
                 
mysql_tquery(DatabaseDB_Query"OnPlayerRegister""d"playerid); 



And i Have This on CreateClan Section

PHP Code:

format(querysizeof(query), "INSERT INTO `accounts` (`Name`, `gangid`, `gangrank`)\
    VALUES ('%s','%d','%d')"
,
    
pInfo[playerid][Name], pInfo[playerid][pGangID], pInfo[playerid][pGangRank]);
    
mysql_query(Database,query); 

And This Will Happen,


Anyone Could Helpme Please?

[Ajuda] Servidor desligando com TextDrawSetString.

$
0
0
@RESOLVIDO
Solução: Removi a criação da TextDraw de dentro do Loop.

Boa tarde users, estou tentando atualizar uma TextDraw em meu servidor, criada para aparecer em um determinado local:

OnGameModeInit´
PHP Code:

format(formatosizeof(formato),"Pista de Skate ~r~%s"DOF2_GetString(File_G"no_Poder"));
TextArea[i] = TextDrawCreate(70.000000300.000000formato);
TextDrawSetString(TextArea[i], formato);
TextDrawBackgroundColor(TextArea[i], 255);
TextDrawAlignment(TextArea[i], 1);
TextDrawFont(TextArea[i], 3);
TextDrawLetterSize(TextArea[i], 0.29991.7);
TextDrawColor(TextArea[i], -1);
TextDrawSetOutline(TextArea[i], 10

No comando...
PHP Code:

for(new iMAX_PLAYERS; ++i)
{
    if(
IsPlayerInArea(i1862.1864, -1450.54821976.6798, -1351.5082))
    {
        
TextDrawShowForPlayer(iTextArea[i]);

        
format(formatosizeof(formato),"Pista de Skate %s"DOF2_GetString(File_G"no_Poder"));
        
TextDrawSetString(TextArea[i], formato);
    }     
    else 
    {
        
TextDrawHideForPlayer(iTextArea[i]);
    }


Alguém poderia me dar uma solução, por favor?

Problem: Not deleted from ini file

$
0
0
I have a problem.
When I open a clan, then each clan receives its idi by the amount of clans and it is added to a text file of the entire list of clans for example:
Clan1 - Test

Now when I delete the clan the clan file itself is deleted but in the clans list that clan's line is not deleted and it still appears in the clans list.
In addition, after deleting the Clan it does not remove all players for some reason it means that I am still in the Clan.

Code:

for(new i=0;i<MAX_PLAYERS;i++)
            {
            if(IsPlayerConnected(i))
            {
                if(DOF2_GetInt(pFile(i), "HaveClan"))
                {
                    if(strcmp(DOF2_GetString(pFile(i),"Clan"),tmp,true) == 0)
                    {
                        DOF2_SetString(pFile(i),"Clan","None");
                        DOF2_SetInt(pFile(i),"ClanLevel",0);
                        DOF2_SetInt(pFile(i), "HaveClan",0);
                        SetPlayerRandomColor(i);
                    }
                }
            }
            }
            for(new i=1; i<DOF2_GetInt("/Clans/Main.ini", "Total"); i++)
            {
                new file2[500],ClanName[256],ClanName2[256];
                format(file2,256,"Clans/Main.ini");
                format(String,256,"clan%d",i);
                ClanName = DOF2_GetString(file2,String);
                ClanName2 = DOF2_GetString(pFile(playerid),"Clan");
                if(strcmp(ClanName,ClanName2) == 0)
                {
                    format(file2,256,"Clans/Main.ini");
                    DOF2_Unset(file2,tmp);
                }
            }


All Command:


Code:

if(!strcmp(tmp, "Delete", true))
                {
                        tmp = strtok(cmdtext, idx);
                        new file[256];
                        if(!strlen(tmp)) return SendClientMessage(playerid, white, "USAGE: /Clan Delete [Clan Name]");
                        format(file ,sizeof(file), "Clans/%s.ini", tmp);
                        if(!DOF2_FileExists(file)) return SendClientMessage(playerid, 0xFF0000FF, ".àéï ÷ìàï áùí æä");
                        new CColor[3];
                        CColor[0] = DOF2_GetInt(file, "R");
                        CColor[1] = DOF2_GetInt(file, "G");
                        CColor[2] = DOF2_GetInt(file, "B");
                        format(String, sizeof(String), "{FF0000}.{FFB14B} %s{FF0000} îç÷ àú ä÷ìàï {FFB14B}%s{FF0000} îðäì ä÷ìàðéí", tmp, GetName(playerid));
                        SendClientMessageToAll(-1, String);
                        DOF2_RemoveFile(file);
                        CColor[0] = 0;
                        CColor[1] = 0;
                        CColor[2] = 0;
                        for(new i=0;i<MAX_PLAYERS;i++)
                        {
                        if(IsPlayerConnected(i))
                        {
                            if(DOF2_GetInt(pFile(i), "HaveClan"))
                            {
                                if(strcmp(DOF2_GetString(pFile(i),"Clan"),tmp,true) == 0)
                                {
                                    DOF2_SetString(pFile(i),"Clan","None");
                                    DOF2_SetInt(pFile(i),"ClanLevel",0);
                                    DOF2_SetInt(pFile(i), "HaveClan",0);
                                    SetPlayerRandomColor(i);
                                }
                            }
                        }
                        }
                        for(new i=1; i<DOF2_GetInt("/Clans/Main.ini", "Total"); i++)
            {
                        new file2[500],ClanName2[256],ClanName[256];
                format(file2,256,"Clans/Main.ini");
                format(String,256,"clan%d",i);
                ClanName = DOF2_GetString(file2,String);
                ClanName2 = DOF2_GetString(pFile(playerid),"Clan");
                if(strcmp(ClanName2,ClanName) == 0)
                {
                    format(file2,256,"Clans/Main.ini");
                    DOF2_Unset(file2,tmp);
                }
            }
                        return 1;
                }

OnPlayerEnterDynamicArea problem

$
0
0
Hey!

So I got a question about dynamic areas and specifically about OnPlayerEnterDynamicArea callback.

So I got few areas created that I pass through with vehicle, the speed I'm passing through is usually different each time, and sometimes OnPlayerEnterDynamicArea gets called precisely but usually with slight delay that makes the whole thing pointless.

I'm using "CreateDynamicSphere" to create area, and I'm use the size/radius 5.0.. I know I could just increase it, but then whenever I would go to the area slow, it would get called too early thats why it needs to be called precisely.

I saw on some other thread to use "Streamer_SetPlayerTickRate" and I've set rate to 15 which helps a bit, but still not enough. Any other suggestions?

[Ajuda] SetPlayerMapIcon apenas no ESC

$
0
0
Gostaria de saber alguma forma pra deixar o SetPlayerMapIcon apenas no mapa do ESC e não no mini-mapa, ai quando ele saisse do ESC os ícones sumiriam.

player name colors

$
0
0
PHP Code:

public OnPlayerConnect(playerid)
{
    
SetPlayerColor(playerid0xFFFFFFFF);
    if(
IsPlayerAdmin(playerid))return SetPlayerColor(playerid0x0000FFFF);
    return 
1;


color is always white...why? even if i am logged in as rcon

Why crash my server ?

$
0
0
[23:01:25] [debug] Server crashed while executing roleplay.amx
[23:01:25] [debug] AMX backtrace:
[23:01:25] [debug] #0 native sv_stream_delete () in sampvoice.so
[23:01:25] [debug] #1 000cfad0 in public SSCANF_OnPlayerDisconnect (0, 1) in roleplay.amx
[23:01:25] [debug] #2 00011df4 in public ppb_OnPlayerDisconnect (0, 1) in roleplay.amx
[23:01:25] [debug] #3 00011044 in public Itter_OnPlayerDisconnect (0, 1) in roleplay.amx
[23:01:25] [debug] #4 00001990 in public OnPlayerDisconnect (0, 1) in roleplay.amx
[23:01:25] [debug] Native backtrace:
[23:01:25] [debug] #0 f64ce8b6 in _Z13GetStackTraceRSt6vectorI10StackFrameSaIS0_EEPv () in plugins/crashdetect.so
[23:01:25] [debug] #1 f64c6120 in _ZN18CrashDetectHandler20PrintNativeBacktraceERSoR KN2os7ContextE () in plugins/crashdetect.so
[23:01:25] [debug] #2 f64c6886 in _ZN18CrashDetectHandler20PrintNativeBacktraceERKN2 os7ContextE () in plugins/crashdetect.so
[23:01:25] [debug] #3 f64c6f96 in _ZN18CrashDetectHandler7OnCrashERKN2os7ContextE () in plugins/crashdetect.so
[23:01:25] [debug] #4 f64cdf82 in ?? () in plugins/crashdetect.so
[23:01:25] [debug] #5 f7790410 in __kernel_rt_sigreturn () in linux-gate.so.1
[23:01:25] [debug] #6 f62e64cc in _ZN4core12pawn_handler13stream_deleteEPN5audio7str eams6streamE () in plugins/sampvoice.so
[23:01:25] [debug] #7 f62d1b39 in ?? () in plugins/sampvoice.so
[23:01:25] [debug] #8 080950e4 in ?? () in ./samp03svr
[23:01:25] [debug] #9 f64c7b9b in _ZN18CrashDetectHandler15ProcessCallbackEiPiS0_ () in plugins/crashdetect.so
[23:01:25] [debug] #10 f64cbfc2 in ?? () in plugins/crashdetect.so
[23:01:25] [debug] #11 f64d0bc7 in amx_Exec () in plugins/crashdetect.so
[23:01:25] [debug] Registers:
[23:01:25] [debug] EAX: 8f5c2910 EBX: f63d5000 ECX: f62d1af0 EDX: f63d01d8
[23:01:25] [debug] ESI: 092cc178 EDI: 092cc178 EBP: ffeaa7e8 ESP: ffeaa740
[23:01:25] [debug] EIP: f62e64cc EFLAGS: 00210206
[23:01:25] [debug] Stack:
[23:01:25] [debug] ESP+00000000: f58311fc 083f8158 ffeaa7b8 080ddfa7
[23:01:25] [debug] ESP+00000020: f58311fc 083f8158 ffeaa828 f4b9f008
[23:01:25] [debug] ESP+00000040: 092cc178 083f8158 ffeaa7e8 f62d1b39
[23:01:25] [debug] ESP+00000060: 00000002 f75992e2 f62d1af9 f4b9f008
[23:01:25] [debug] ESP+00000080: 083f8158 f58311d0 00000000 00ab5144
[23:01:25] [debug] ESP+000000a0: 08303708 f64f3630 ffeaa978 f64c7b9b
[23:01:25] [debug] ESP+000000c0: 000cfad0 000000e9 00000001 00000001
[23:01:25] [debug] ESP+000000e0: f77b1d20 082816b0 ffeaa8b8 f75869b8
[23:01:25] [debug] ESP+00000100: 00000000 008ccd18 00000032 00000000
[23:01:25] [debug] ESP+00000120: 00000012 0827f230 0827f230 f77b1d20
[23:01:25] [debug] ESP+00000140: 00003035 ffeaa900 ffeaa8c8 f74d7b1c
[23:01:25] [debug] ESP+00000160: 00000000 00000002 f7586941 f7787000
[23:01:25] [debug] ESP+00000180: 00000000 00000002 00000010 f74d6ea5
[23:01:25] [debug] ESP+000001a0: 083f8158 f77b2000 00000000 f77a0276
[23:01:25] [debug] ESP+000001c0: 08303708 f64f3630 ffeaa978 f64c7637
[23:01:25] [debug] ESP+000001e0: ffeaa910 f77b2000 00000000 f77b1d20
[23:01:25] [debug] ESP+00000200: 00ab5144 000cfad0 000000e9 0000000a
[23:01:25] [debug] ESP+00000220: 00000004 085dce88 f760d420 f64f3000
[23:01:25] [debug] ESP+00000240: 08303708 000000e9 ffeaa9fc f58311d0
[23:01:25] [debug] ESP+00000260: 083f8158 f4d7c094 f4b9f008 f64d0bc7
[23:01:25] [debug] ESP+00000280: 00000036 f4ba55c8 00ab513c 008ccd18
[23:01:25] [debug] ESP+000002a0: 00000000 001d6acc 000cfad0 f64cb8ae
[23:01:25] [debug] ESP+000002c0: ffeaaacc 00000001 083f8158 f64f3000
[23:01:25] [debug] ESP+000002e0: 083f8158 ffeaab7c 0000006c 00000000
[23:01:25] [debug] ESP+00000300: 0827f230 00000001 00000000 f64ac7f0
[23:01:25] [debug] ESP+00000320: 083f8158 f64519d0 ffeaab7c 0000000c
[23:01:25] [debug] ESP+00000340: 092d017c 0827f0d0 00000001 ffeaabc4
[23:01:25] [debug] ESP+00000360: 092c8024 f4b9f008 00000008 0809571b
[23:01:25] [debug] ESP+00000380: 471eabe1 084f38a8 00000000 083f8158
[23:01:25] [debug] ESP+000003a0: ffeaab00 08159480 ffeaab00 f64f3000
[23:01:25] [debug] ESP+000003c0: 08303708 ffeaab7c 0000006c f64ac7f0
[23:01:25] [debug] ESP+000003e0: 0000006c 083f8158 ffeaab68 f6421676
[23:01:25] [debug] Loaded modules:
[23:01:25] [debug] 00000000 - 00187dc3 samp03svr
[23:01:25] [debug] f7792000 - f7792530 linux-gate.so.1
[23:01:25] [debug] f7783000 - f778581b /lib32/libdl.so.2
[23:01:25] [debug] f7767000 - f7781d2b /lib32/libpthread.so.0
[23:01:25] [debug] f7675000 - f776ed1a /usr/lib32/libstdc++.so.6
[23:01:25] [debug] f762f000 - f7673b97 /lib32/libm.so.6
[23:01:25] [debug] f7612000 - f762e3c4 /usr/lib32/libgcc_s.so.1
[23:01:25] [debug] f7464000 - f7619237 /lib32/libc.so.6
[23:01:25] [debug] f7791000 - f77b24a0 /lib/ld-linux.so.2
[23:01:25] [debug] f7213000 - f74626fe plugins/mysql_static.so
[23:01:25] [debug] f7204000 - f720b09f /lib32/librt.so.1
[23:01:25] [debug] f66f3000 - f66fe3ef /lib32/libnss_files.so.2
[23:01:25] [debug] f64af000 - f64f33ac plugins/crashdetect.so
[23:01:25] [debug] f63e9000 - f64ae740 plugins/streamer.so
[23:01:25] [debug] f63d9000 - f63e840c plugins/sscanf.so
[23:01:25] [debug] f6264000 - f63e3ea9 plugins/sampvoice.so
[23:01:25] [debug] f620d000 - f626376c /usr/lib32/libbass.so
[23:01:25] [debug] f6203000 - f620bd1c plugins/Whirlpool.so
[23:01:25] [debug] f778a000 - f778bf70 plugins/nativechecker.so
[23:01:25] [debug] f1391000 - f139597b /lib32/libnss_dns.so.2
[23:01:25] [debug] f1379000 - f13912fb /lib32/libresolv.so.2

gender select on player request class

$
0
0
hey, I'm wondering if this is possible to select gender on player request class
and if this is possible...how to do it? besides, I'm a beginner in scripting, please help

Look at the picture down below:

Attached Images
File Type: jpg sa-mp-002.jpg (204.5 KB)

Can't see anything

$
0
0
Hi, I have a problem with my /exit command when I exit I can't see players nor vehicles, labels and everything else, I tried with virtual worlds, interiors but it just doesn't work, help me if u can please.
Code:

CMD:exit(playerid, params[])
{
        if(!pLoggedIn[playerid])return true;

        if(PlayerData[playerid][pEditingFurniture] && PlayerData[playerid][pEditingDuplicate])
                return SendClientMessage(playerid, COLOR_ADM, "ACCESS DENIED:{FFFFFF} You can't /exit anywhere while editing furniture.");

        for(new h = 0; h < MAX_PROPERTY; h++)
        {
                if(PropertyData[h][propertyid] != 0){
                        if(PropertyData[h][propertyType] == 2){
                                if(IsPlayerInRangeOfPoint(playerid, 3.0, PropertyData[h][propertyInterior][0], PropertyData[h][propertyInterior][1], PropertyData[h][propertyInterior][2]) && PlayerData[playerid][pInsideApartment] == h){
                                        if(GetPlayerVirtualWorld(playerid) == PropertyData[h][propertyInteriorWorld]){
                                                SendPlayer(playerid, PropertyData[h][propertyExterior][0], PropertyData[h][propertyExterior][1], PropertyData[h][propertyExterior][2], PropertyData[h][propertyExteriorID], PropertyData[h][propertyExteriorWorld]);
                                                PlayerData[playerid][pInsideApartment] = 0;
                                                PlayerData[playerid][pInsideComplex] = PropertyData[h][propertyComplexLink];

                                                StopAudioStreamForPlayer(playerid);

                                        }
                                }
                        }
                        else{
                                if(IsPlayerInRangeOfPoint(playerid, 3.0, PropertyData[h][propertyInterior][0], PropertyData[h][propertyInterior][1], PropertyData[h][propertyInterior][2])){
                                        if(GetPlayerVirtualWorld(playerid) == PropertyData[h][propertyInteriorWorld]){
                                                SetPlayerPos(playerid, PropertyData[h][propertyExterior][0], PropertyData[h][propertyExterior][1], PropertyData[h][propertyExterior][2]);
                                                SetPlayerVirtualWorld(playerid, 0);
                                                SetPlayerInterior(playerid, 0);
                                                //SendPlayer(playerid, PropertyData[h][propertyExterior][0], PropertyData[h][propertyExterior][1], PropertyData[h][propertyExterior][2], 0, 0);
                                                PlayerData[playerid][pInsideComplex] = 0;
                                                PlayerData[playerid][pInsideHouse] = 0;
                                                printf("%d %d", GetPlayerVirtualWorld(playerid), GetPlayerInterior(playerid));
                                                StopAudioStreamForPlayer(playerid);
                                        }
                                }
                        }
                }
        }

        for(new b = 0; b < MAX_BUSINESS; b++)
        {
                if(BusinessData[b][businessID] != 0){
                        if(IsPlayerInRangeOfPoint(playerid, 3.0, BusinessData[b][businessInt][0], BusinessData[b][businessInt][1], BusinessData[b][businessInt][2])){
                                if(GetPlayerVirtualWorld(playerid) == BusinessData[b][businessWorld]){
                                        SendPlayer(playerid, BusinessData[b][businessExt][0], BusinessData[b][businessExt][1], BusinessData[b][businessExt][2], 0, 0);
                                        PlayerData[playerid][pInsideBusiness] = 0;
                                }
                        }
                }
        }

        for(new i = 0; i < MAX_DOORS; i++)
        {
                if(DoorData[i][doorID] != 0)
                {
                        if(IsPlayerInRangeOfPoint(playerid, 4.0, DoorData[i][doorInt][0], DoorData[i][doorInt][1], DoorData[i][doorInt][2]))
                        {
                                if(GetPlayerVirtualWorld(playerid) == DoorData[i][doorIntWorld])
                                {
                                        SendPlayer(playerid, DoorData[i][doorPos][0], DoorData[i][doorPos][1], DoorData[i][doorPos][2], DoorData[i][doorPosIntID], DoorData[i][doorPosWorld]);
                                        PlayerData[playerid][pInsideDoor] = i;
                                }
                        }
                }
        }

        for(new g = 0; g < MAX_PROPERTY_GARAGES; g++)
        {
                if(GarageData[g][garageSQLID] != 0)
                {
                        if(IsPlayerInRangeOfPoint(playerid, 4.0, GarageData[g][garageInt][0], GarageData[g][garageInt][1], GarageData[g][garageInt][2]))
                        {
                                if(GetPlayerVirtualWorld(playerid) == GarageData[g][garageWorld])
                                {
                                        SendPlayer(playerid, GarageData[g][garagePos][0], GarageData[g][garagePos][1], GarageData[g][garagePos][2], 0, 0);

                                        PlayerData[playerid][pInsideGarage] = 0;

                                        if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
                                        {
                                                //SetVehicleZAngle(GetPlayerVehicleID(playerid), GarageData[g][garagePos][3]);

                                                foreach(new i : Player)
                                                {
                                                        if(IsPlayerInVehicle(i, GetPlayerVehicleID(playerid)))
                                                        {
                                                                SetPlayerInterior(i, 0);
                                                                SetPlayerVirtualWorld(i, 0);
                                                                PlayerData[i][pInsideGarage] = 0;
                                                        }
                                                }
                                        }
                                }
                        }
                }
        }

        new idx;
        if(IsPlayerInsideEntrance(playerid) != -1)
        {
                idx = IsPlayerInsideEntrance(playerid);
                ExitEntrance(playerid, idx);
        }

        return true;
}

[MAP] Meth Lab on SA:MP - Like Breaking Bad

$
0
0

⚫Introduction⚫

Being a fan of the TV series that we all know, Breaking Bad, we decided to replicate in more detail a methamphetamine laboratory (since I didn't find a complete one turning), taking inspiration from the laboratory on GTA V, which in turn is inspired by Breaking Bad. From my point of view, a really nice map came out, but I also want your opinion to be positive or negative. Hope you like it!



⚫About the Map⚫

Authors: eyet & IlPerignon
Object's: 965.
Remove: 0.
Work Hours: 5 hours.
Visual Bugs Found: Apparently no visual bug was found.
Download: No download will be released.


⚫Video (on Youtube)⚫

https://www.youtube.com/watch?v=a1iO...ature=youtu.be




⚫Images⚫

https://imgur.com/a/hxkgzBg

[HELP] Run time error 4: "Array index out of bounds"

$
0
0
pawn Code:
[debug] Run time error 4: "Array index out of bounds"
 [debug]  Attempted to read/write array element at index 682 in array of size 682
[debug] AMX backtrace:
[debug] #0 000029ec in ?? (1141407744, 1136328704, 1116143616, 1075838976, 10457087, 1120403456) from SARP.amx
[debug] #1 00077e68 in public CargarTodo () from SARP.amx

Why is debug # 0? I find no explanation.

Debug Code # 1: CargarTodo ()

pawn Code:
forward CargarTodo();
public CargarTodo()
{
    CargarHouses();
    CargarFacciones();
    CargarUsers();

    CN = TextDrawCreate(1.390947, 2.083340, "Nuevo Textdraw");
    TextDrawLetterSize(CN, 0.000000, 11.546119);
    TextDrawTextSize(CN, 649.000000, 0.000000);
    TextDrawAlignment(CN, 1);
    TextDrawColor(CN, -1);
    TextDrawUseBox(CN, 1);
    TextDrawBoxColor(CN, 255);
    TextDrawSetShadow(CN, 0);
    TextDrawSetOutline(CN, 0);
    TextDrawBackgroundColor(CN, 255);
    TextDrawFont(CN, 1);
    TextDrawSetProportional(CN, 1);
    TextDrawSetShadow(CN, 0);

    CN2 = TextDrawCreate(331.097686, 21.996381, "Texto");
    TextDrawLetterSize(CN2, 1.086849, 4.907499);
    TextDrawAlignment(CN2, 2);
    TextDrawColor(CN2, -1);
    TextDrawSetShadow(CN2, 0);
    TextDrawSetOutline(CN2, 0);
    TextDrawBackgroundColor(CN2, 255);
    TextDrawFont(CN2, 0);
    TextDrawSetProportional(CN2, 1);
    TextDrawSetShadow(CN2, 0);
    TextDrawSetSelectable(CN2, 0);

    CN3 = TextDrawCreate(358.025604, 59.929340, "Texto");
    TextDrawLetterSize(CN3, 0.337215, 2.288329);
    TextDrawAlignment(CN3, 2);
    TextDrawColor(CN3, -1);
    TextDrawSetShadow(CN3, 0);
    TextDrawSetOutline(CN3, 0);
    TextDrawBackgroundColor(CN3, 255);
    TextDrawFont(CN3, 2);
    TextDrawSetProportional(CN3, 1);
    TextDrawSetShadow(CN3, 0);
    TextDrawSetSelectable(CN3, 0);

    CN4 = TextDrawCreate(638.411499, 97.846000, "Texto");
    TextDrawLetterSize(CN4, 0.133877, 0.975831);
    TextDrawAlignment(CN4, 3);
    TextDrawColor(CN4, -126);
    TextDrawSetShadow(CN4, 0);
    TextDrawSetOutline(CN4, 0);
    TextDrawBackgroundColor(CN4, 255);
    TextDrawFont(CN4, 2);
    TextDrawSetProportional(CN4, 1);
    TextDrawSetShadow(CN4, 0);
    TextDrawSetSelectable(CN4, true);

    CN5 = TextDrawCreate(560.515563, 433.614837, "Texto");
    TextDrawBackgroundColor(CN5, 255);
    TextDrawLetterSize(CN5, 0.199941, 1.325832);
    TextDrawColor(CN5, -1);
    TextDrawFont(CN5, 2);
    TextDrawSetProportional(CN5, 1);
    TextDrawSetOutline(CN5, 0);
    TextDrawAlignment(CN5, 2);
    TextDrawSetShadow(CN5, 1);
    TextDrawSetSelectable(CN5, 0);

    MapaGTA = TextDrawCreate(325.000000, 13.000000, "samaps:map");
    TextDrawBackgroundColor(MapaGTA, 255);
    TextDrawFont(MapaGTA, 4);
    TextDrawTextSize(MapaGTA, 310.000000, 324.000000);
    TextDrawColor(MapaGTA, 255);
    TextDrawSetOutline(MapaGTA, 0);
    TextDrawSetProportional(MapaGTA, 1);
    TextDrawSetShadow(MapaGTA, 1);
    TextDrawUseBox(MapaGTA, 1);
    TextDrawBoxColor(MapaGTA, 255);

    MapaGTA2 = TextDrawCreate(329.000000, 37.000000, "samaps:map");
    TextDrawBackgroundColor(MapaGTA2, 255);
    TextDrawFont(MapaGTA2, 4);
    TextDrawTextSize(MapaGTA2, 302.000000, 295.000000);
    TextDrawColor(MapaGTA2, -1);
    TextDrawSetOutline(MapaGTA2, 0);
    TextDrawSetProportional(MapaGTA2, 1);
    TextDrawSetShadow(MapaGTA2, 1);
    TextDrawUseBox(MapaGTA2, 1);
    TextDrawBoxColor(MapaGTA2, 124);

    MapaGTA3 = TextDrawCreate(333.000000, 16.000000, "GPS");
    TextDrawLetterSize(MapaGTA3, 0.579999, 1.800000);
    TextDrawAlignment(MapaGTA3, 1);
    TextDrawColor(MapaGTA3, -1);
    TextDrawSetShadow(MapaGTA3, 1);
    TextDrawSetOutline(MapaGTA3, 0);
    TextDrawBackgroundColor(MapaGTA3, 255);
    TextDrawFont(MapaGTA3, 2);
    TextDrawSetProportional(MapaGTA3, 1);

    MapaGTA4 = TextDrawCreate(457.000000, 23.000000, "Usa");
    TextDrawLetterSize(MapaGTA4, 0.259999, 0.699998);
    TextDrawAlignment(MapaGTA4, 1);
    TextDrawColor(MapaGTA4, -1);
    TextDrawSetShadow(MapaGTA4, 1);
    TextDrawSetOutline(MapaGTA4, 0);
    TextDrawBackgroundColor(MapaGTA4, 255);
    TextDrawFont(MapaGTA4, 2);
    TextDrawSetProportional(MapaGTA4, 1);

    MapaGTA5 = TextDrawCreate(479.000000, 23.000000, "/ocultar gps");
    TextDrawLetterSize(MapaGTA5, 0.260000, 0.699999);
    TextDrawAlignment(MapaGTA5, 1);
    TextDrawColor(MapaGTA5, -624405505);
    TextDrawSetShadow(MapaGTA5, 1);
    TextDrawSetOutline(MapaGTA5, 0);
    TextDrawBackgroundColor(MapaGTA5, 255);
    TextDrawFont(MapaGTA5, 2);
    TextDrawSetProportional(MapaGTA5, 1);

    MapaGTA6 = TextDrawCreate(558.000000, 23.000000, "para cerrar");
    TextDrawLetterSize(MapaGTA6, 0.260000, 0.699999);
    TextDrawAlignment(MapaGTA6, 1);
    TextDrawColor(MapaGTA6, -1);
    TextDrawSetShadow(MapaGTA6, 1);
    TextDrawSetOutline(MapaGTA6, 0);
    TextDrawBackgroundColor(MapaGTA6, 255);
    TextDrawFont(MapaGTA6, 2);
    TextDrawSetProportional(MapaGTA6, 1);

    MapaGTA7 = TextDrawCreate(333.000000, 16.000000, "PANTALLA");
    TextDrawLetterSize(MapaGTA7, 0.579999, 1.800000);
    TextDrawAlignment(MapaGTA7, 1);
    TextDrawColor(MapaGTA7, -1);
    TextDrawSetShadow(MapaGTA7, 1);
    TextDrawSetOutline(MapaGTA7, 0);
    TextDrawBackgroundColor(MapaGTA7, 255);
    TextDrawFont(MapaGTA7, 2);
    TextDrawSetProportional(MapaGTA7, 1);

    MapaGTA8 = TextDrawCreate(479.000000, 23.000000, "/ocultar pantalla");
    TextDrawLetterSize(MapaGTA8, 0.260000, 0.699999);
    TextDrawAlignment(MapaGTA8, 1);
    TextDrawColor(MapaGTA8, -624405505);
    TextDrawSetShadow(MapaGTA8, 1);
    TextDrawSetOutline(MapaGTA8, 0);
    TextDrawBackgroundColor(MapaGTA8, 255);
    TextDrawFont(MapaGTA8, 2);
    TextDrawSetProportional(MapaGTA8, 1);

    for(new i = 0; i < MAX_PLAYERS; i++)
    {

        TAXIMET[i] = TextDrawCreate(378.000000, 360.000000, "Taximetro");
        TextDrawBackgroundColor(TAXIMET[i], 255);
        TextDrawFont(TAXIMET[i], 1);
        TextDrawLetterSize(TAXIMET[i], 0.500000, 1.000000);
        TextDrawColor(TAXIMET[i], -1);
        TextDrawSetOutline(TAXIMET[i], 0);
        TextDrawSetProportional(TAXIMET[i], 1);
        TextDrawSetShadow(TAXIMET[i], 1);
        TextDrawUseBox(TAXIMET[i], 1);
        TextDrawBoxColor(TAXIMET[i], 255);
        TextDrawTextSize(TAXIMET[i], 494.000000, 230.000000);

        TAXIMET2[i] = TextDrawCreate(470.000000, 360.000000, "$0");
        TextDrawBackgroundColor(TAXIMET2[i], 255);
        TextDrawFont(TAXIMET2[i], 1);
        TextDrawLetterSize(TAXIMET2[i], 0.500000, 1.000000);
        TextDrawColor(TAXIMET2[i], -1);
        TextDrawSetOutline(TAXIMET2[i], 0);
        TextDrawSetProportional(TAXIMET2[i], 1);
        TextDrawSetShadow(TAXIMET2[i], 1);

        // Velocimetro y Taximetro

        santiago1[i] = TextDrawCreate(620.447937, 337.500030, "usebox");
        TextDrawLetterSize(santiago1[i], 0.000000, 4.609256);
        TextDrawTextSize(santiago1[i], 539.610473, 0.000000);
        TextDrawAlignment(santiago1[i], 1);
        TextDrawColor(santiago1[i], 0);
        TextDrawUseBox(santiago1[i], 1);
        TextDrawBoxColor(santiago1[i], 0x0B0B0BAA);
        TextDrawSetShadow(santiago1[i], 1);
        TextDrawSetOutline(santiago1[i], 0);
        TextDrawFont(santiago1[i], 0);

        santiago2[i] = TextDrawCreate(620.447998, 384.750000, "usebox");
        TextDrawLetterSize(santiago2[i], 0.000000, 4.544444);
        TextDrawTextSize(santiago2[i], 539.610534, 0.000000);
        TextDrawAlignment(santiago2[i], 1);
        TextDrawColor(santiago2[i], -1);
        TextDrawUseBox(santiago2[i], 1);
        TextDrawBoxColor(santiago2[i], 0x0B0B0BAA);
        TextDrawSetShadow(santiago2[i], 0);
        TextDrawSetOutline(santiago2[i], 0);
        TextDrawFont(santiago2[i], 0);

        santiago3[i] = TextDrawCreate(588.930725, 404.833251, "KM/h");
        TextDrawLetterSize(santiago3[i], 0.321155, 0.958333);
        TextDrawAlignment(santiago3[i], 1);
        TextDrawColor(santiago3[i], -1);
        TextDrawSetShadow(santiago3[i], 0);
        TextDrawSetOutline(santiago3[i], 1);
        TextDrawBackgroundColor(santiago3[i], 51);
        TextDrawFont(santiago3[i], 1);
        TextDrawSetProportional(santiago3[i], 1);

        santiago4[i] = TextDrawCreate(549.106384, 384.416839, "Velocimetro");
        TextDrawLetterSize(santiago4[i], 0.302412, 1.308332);
        TextDrawAlignment(santiago4[i], 1);
        TextDrawColor(santiago4[i], -1);
        TextDrawSetShadow(santiago4[i], 0);
        TextDrawSetOutline(santiago4[i], 1);
        TextDrawBackgroundColor(santiago4[i], 51);
        TextDrawFont(santiago4[i], 1);
        TextDrawSetProportional(santiago4[i], 1);

        santiago5[i] = TextDrawCreate(558.008972, 399.583282, "0");
        TextDrawLetterSize(santiago5[i], 0.449999, 1.600000);
        TextDrawAlignment(santiago5[i], 1);
        TextDrawColor(santiago5[i], -1);
        TextDrawSetShadow(santiago5[i], 0);
        TextDrawSetOutline(santiago5[i], 1);
        TextDrawBackgroundColor(santiago5[i], 51);
        TextDrawFont(santiago5[i], 1);
        TextDrawSetProportional(santiago5[i], 1);

        santiago6[i] = TextDrawCreate(546.296081, 337.166625, "Combustible");
        TextDrawLetterSize(santiago6[i], 0.321156, 1.424999);
        TextDrawAlignment(santiago6[i], 1);
        TextDrawColor(santiago6[i], -1);
        TextDrawSetShadow(santiago6[i], 0);
        TextDrawSetOutline(santiago6[i], 1);
        TextDrawBackgroundColor(santiago6[i], 51);
        TextDrawFont(santiago6[i], 1);
        TextDrawSetProportional(santiago6[i], 1);

        santiago7[i] = TextDrawCreate(548.638305, 352.333374, "0/100");
        TextDrawLetterSize(santiago7[i], 0.449999, 1.600000);
        TextDrawAlignment(santiago7[i], 1);
        TextDrawColor(santiago7[i], -1);
        TextDrawSetShadow(santiago7[i], 0);
        TextDrawSetOutline(santiago7[i], 1);
        TextDrawBackgroundColor(santiago7[i], 51);
        TextDrawFont(santiago7[i], 1);
        TextDrawSetProportional(santiago7[i], 1);

        TiempoBaul[i]   = CreateProgressBar(256.00, 289.00, 127.50, 4.19, 16711935, 100.0);

        speedbar[i]     = CreateProgressBar(546.00, 419.00, 67.50,  2.50, -8978177, 100.0);
        speedbar2[i]    = CreateProgressBar(546.00, 374.00, 67.50,  2.50, 10457087, 100.0);
        Descargando[i]  = CreateProgressBar(260.00, 355.00, 120.50, 3.20, 16711935, 100.0);

    }
}

Code CargarHouses()
pawn Code:
forward CargarHouses();
public CargarHouses()
{
    new Query[200];
    format(Query, sizeof(Query), "SELECT * FROM `propiedades`");
    mysql_function_query(Conecction, Query, true, "CargarCasas", "i", 3);
}

Code CargarFacciones()
pawn Code:
forward CargarFacciones();
public CargarFacciones()
{
    new Query[200];
    format(Query, sizeof(Query), "SELECT * FROM `facciones`");
    mysql_function_query(Conecction, Query, true, "CargarBandas", "i", 3);
}

Code CargarUsers()
pawn Code:
forward CargarUsers();
public CargarUsers()
{
    new Query[200];
    format(Query, sizeof(Query), "SELECT * FROM `registros`");
    mysql_function_query(Conecction, Query, true, "CargarRegistros", "i", 3);
}

Help onplayertext


Digital Roleplay [d-rp.net] - Coming Soon - Bayside!

$
0
0
  • Digital Roleplay is a brand new roleplay server based mainly around the Bayside area, a small nice town north of San Fierro. We have a lot of systems that should be familiar to most players - but we have tons of our own unique and fun features as well!

  • We aim to give the players a new taste of Grand Theft Auto roleplay, mixed with lots of fun, without taking away its core elements to make sure everyone can have a good experience, regardless if you're new or experienced in roleplaying! We welcome everyone - from light to heavy roleplayers, Digital Roleplay has a place for you!

More roleplay, less bullshit, more fun.
Website: d-rp.net - Discord: d-rp.net/discord - Server: server.d-rp.net:7777


We're still under development! Join our Discord server to get updated with the latest news & announcements about the community!

Why crash my server ?

$
0
0
fcnpc-crash_2019-11-08_15.37.02

Code:

=========================== FCNPC Exception Handler ============================
Address: 0x49939b

Registers:
EAX: 0x12edfc - EBX: 0x1b49d18 - ECX: 0x0 - EDX: 0x4056c0
ESI: 0x0 - EDI: 0x14a0828 - EBP: 0x12ee0c - ESP: 0x12ede4

Stack:
0x0: 0x14a0828 - 0x4: 0x14a0828 - 0x8: 0x1b49d18 - 0xC: 0xffffffff - 0x10: 0x12ede4 - 0x14: 0x12e88c
0x18: 0x12ef40 - 0x1C: 0x49d208 - 0x20: 0x4ba1b8

Information:
  System: Windows
  SA-MP: 0.3.7 R2
  FCNPC: 1.8.2

Functions:
  FUNC_CPlayerPool__DeletePlayer: 0x466570
  FUNC_CPlayer__Kill: 0x484620
  FUNC_CPlayer__EnterVehicle: 0x484c70
  FUNC_CPlayer__ExitVehicle: 0x484f50
  FUNC_CPlayer__SpawnForWorld: 0x486d30
  FUNC_GetVehicleModelInfo: 0x488240
  FUNC_CConsole__GetIntVariable: 0x48b5b0
  FUNC_ClientJoin_RPC: 0x4918f0

Pointers:
  VAR_ServerAuthentication: 0x4f5fe8
  VAR_NetVersion: 0xfd9

Offsets:
  OFFSET_RemoteSystemManager: 0x33c
  OFFSET_RemoteSystemSize: 0xcb8
  OFFSET_RemoteSystem__ConnectMode: 0xcb0
  OFFSET_RemoteSystem__Unknown: 0xcb5
=========================== FCNPC Exception Handler ============================

Server.cfg
Code:

echo Executing Server Config...
lanmode 0
rcon_password denemearenagayming
maxplayers 335
port 7777
hostname SF-CNR Test Server (0.3.7)
gamemode0 sf-cnr 1
filterscripts sampcac_testscript
announce 0
query 1
weburl www.sa-mp.com
onfoot_rate 40
incar_rate 40
weapon_rate 40
stream_distance 300.0
stream_rate 1000
plugins crashdetect mysql gvar regex sscanf streamer FCNPC Whirlpool  RouteConnectorPlugin MapAndreas sampcac_server TPoker MerRandom FileManager nativechecker
maxnpc 220
logtimeformat [%H:%M:%S]
language English
messageslimit 10000
messageholelimit 30000

Server.log
Code:

----------
Loaded log file: "server_log.txt".
----------

SA-MP Dedicated Server
----------------------
v0.3.7-R2, (C)2005-2015 SA-MP Team

[18:39:26]
[18:39:26] Server Plugins
[18:39:26] --------------
[18:39:26]  Loading plugin: crashdetect
[18:39:26]  CrashDetect plugin 4.19.4
[18:39:26]  Loaded.
[18:39:26]  Loading plugin: mysql
[18:39:27]  >> plugin.mysql: R39-6 successfully loaded.
[18:39:27]  Loaded.
[18:39:27]  Loading plugin: gvar
[18:39:27]

*** GVar Plugin v1.3 by Incognito loaded ***

[18:39:27]  Loaded.
[18:39:27]  Loading plugin: regex
[18:39:27]


[18:39:27] ______________________________________


[18:39:27]  Regular Expression Plugin v0.2.1 loaded
[18:39:27] ______________________________________


[18:39:27]  By: Fro (c) Copyright <TBG> 2009-2011
[18:39:27] ______________________________________


[18:39:27]  Loaded.
[18:39:27]  Loading plugin: sscanf
[18:39:27]

[18:39:27]  ===============================

[18:39:27]      sscanf plugin loaded.   

[18:39:27]          Version:  2.8.3       

[18:39:27]  (c) 2018 Alex "******" Cole 

[18:39:27]  ===============================

[18:39:27]  Loaded.
[18:39:27]  Loading plugin: streamer
[18:39:27]

*** Streamer Plugin v2.9.3 by Incognito loaded ***

[18:39:27]  Loaded.
[18:39:27]  Loading plugin: FCNPC
[18:39:27]
[18:39:27] -------------------------------------------------
[18:39:27]      FCNPC - Fully Controllable NPC v1.8.2
[18:39:27]          Windows SA-MP 0.3.7 R2
[18:39:27]          Jan  8 2018 at 01:14:48
[18:39:27]
[18:39:27]  Author:      OrMisicL (2013 - 2015)
[18:39:27]  Continued by: ziggi (2016 - present)
[18:39:27]  Contributors: kurta999, Neutralneu
[18:39:27] -------------------------------------------------
[18:39:27]
[18:39:27] Loading...
[18:39:27]  Loaded.
[18:39:27]  Loading plugin: Whirlpool
[18:39:27] 
[18:39:27]  ==================
[18:39:27] 
[18:39:27]  Whirlpool loaded
[18:39:27] 
[18:39:27]  ==================
[18:39:27] 
[18:39:27]  Loaded.
[18:39:27]  Loading plugin: RouteConnectorPlugin
[18:39:27]  Loaded.
[18:39:27]  Loading plugin: MapAndreas
[18:39:27]  Loaded.
[18:39:27]  Loading plugin: sampcac_server
[18:39:27]  SA-MP Clientside AntiCheat v0.10.0 is being loaded ...
[18:39:27]  Loaded.
[18:39:27]  Loading plugin: TPoker
[18:39:27] **plugin: TPoker by ThreeKingz was successfully loaded! **
[18:39:27]  Loaded.
[18:39:27]  Loading plugin: MerRandom
[18:39:27] Plugin MerRandom v2.1 - by Cyber_Punk got loaded.
[18:39:27]  Loaded.
[18:39:27]  Loading plugin: FileManager
[18:39:27] ******************
[18:39:27] ** FILE MANAGER **
[18:39:27] **    Loaded    **
[18:39:27] ** Version 1.5 **
[18:39:27] ******************
[18:39:27]  Loaded.
[18:39:27]  Loading plugin: nativechecker
[18:39:27]  Loaded.
[18:39:27]  Loaded 15 plugins.

[18:39:27]
[18:39:27] Filterscripts
[18:39:27] ---------------
[18:39:27]  Loading filterscript 'sampcac_testscript.amx'...
[18:39:27] AMX (21831328) loaded
[18:39:27]  SAMPCAC test filterscript loaded.
[18:39:27]  Loaded 1 filterscripts.

[18:39:27] AMX (21694504) loaded
[18:39:27] 
[18:39:27] 
[18:39:27] 
[18:39:27]  =======================================
[18:39:27]  |                                    |
[18:39:27]  |        YSI version 4.00.0001        |
[18:39:27]  |        By Alex "******" Cole        |
[18:39:27]  |                                    |
[18:39:27]  =======================================
[18:39:27] 
[18:40:00] [MYSQL]:Veritabanına bağlantı başarılı.
[18:40:00] [npc:join] [BOT]SexShopClerk0 has joined the server (334:127.0.0.1)
[18:40:00] [npc:join] [BOT]SexShopClerk1 has joined the server (333:127.0.0.1)
[18:40:00] [npc:join] [BOT]SexShopClerk2 has joined the server (332:127.0.0.1)
[18:40:00] [npc:join] [BOT]SexShopClerk3 has joined the server (331:127.0.0.1)
[18:40:00] [npc:join] [BOT]BettingClerk has joined the server (330:127.0.0.1)
[18:40:00] [npc:join] [BOT]Zero5 has joined the server (329:127.0.0.1)
[18:40:00] [npc:join] [BOT]ProlapsClerk6 has joined the server (328:127.0.0.1)
[18:40:00] [npc:join] [BOT]ProlapsClerk7 has joined the server (327:127.0.0.1)
[18:40:00] [npc:join] [BOT]DiscoBartender8 has joined the server (326:127.0.0.1)
[18:40:00] [npc:join] [BOT]DiscoBartender9 has joined the server (325:127.0.0.1)
[18:40:00] [npc:join] [BOT]RestaurantOwner10 has joined the server (324:127.0.0.1)
[18:40:00] [npc:join] [BOT]RestaurantOwner11 has joined the server (323:127.0.0.1)
[18:40:00] [npc:join] [BOT]BrothelManager12 has joined the server (322:127.0.0.1)
[18:40:00] [npc:join] [BOT]Gunsdealer13 has joined the server (321:127.0.0.1)
[18:40:00] [npc:join] [BOT]Gunsdealer14 has joined the server (320:127.0.0.1)
[18:40:00] [npc:join] [BOT]Gunsdealer15 has joined the server (319:127.0.0.1)
[18:40:00] [npc:join] [BOT]Gunsdealer16 has joined the server (318:127.0.0.1)
[18:40:00] [npc:join] [BOT]Gunsdealer17 has joined the server (317:127.0.0.1)
[18:40:00] [npc:join] [BOT]Gunsdealer18 has joined the server (316:127.0.0.1)
[18:40:00] [npc:join] [BOT]Gunsdealer19 has joined the server (315:127.0.0.1)
[18:40:00] [npc:join] [BOT]Gunsdealer20 has joined the server (314:127.0.0.1)
[18:40:00] [npc:join] [BOT]Gunsdealer21 has joined the server (313:127.0.0.1)
[18:40:00] [npc:join] [BOT]Gunsdealer22 has joined the server (312:127.0.0.1)
[18:40:00] [npc:join] [BOT]Gunsdealer23 has joined the server (311:127.0.0.1)
[18:40:00] [npc:join] [BOT]ZIPClerk24 has joined the server (310:127.0.0.1)
[18:40:00] [npc:join] [BOT]ZIPClerk25 has joined the server (309:127.0.0.1)
[18:40:00] [npc:join] [BOT]ZIPClerk26 has joined the server (308:127.0.0.1)
[18:40:00] [npc:join] [BOT]ZIPClerk27 has joined the server (307:127.0.0.1)
[18:40:00] [npc:join] [BOT]BincoClerk28 has joined the server (306:127.0.0.1)
[18:40:00] [npc:join] [BOT]BincoClerk29 has joined the server (305:127.0.0.1)
[18:40:00] [npc:join] [BOT]BincoClerk30 has joined the server (304:127.0.0.1)
[18:40:00] [npc:join] [BOT]BincoClerk31 has joined the server (303:127.0.0.1)
[18:40:00] [npc:join] [BOT]VictimClerk32 has joined the server (302:127.0.0.1)
[18:40:00] [npc:join] [BOT]VictimClerk33 has joined the server (301:127.0.0.1)
[18:40:00] [npc:join] [BOT]VictimClerk34 has joined the server (300:127.0.0.1)
[18:40:00] [npc:join] [BOT]SuburbanClerk35 has joined the server (299:127.0.0.1)
[18:40:00] [npc:join] [BOT]SuburbanClerk36 has joined the server (298:127.0.0.1)
[18:40:00] [npc:join] [BOT]SuburbanClerk37 has joined the server (297:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender38 has joined the server (296:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender39 has joined the server (295:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender40 has joined the server (294:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender41 has joined the server (293:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender42 has joined the server (292:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender43 has joined the server (291:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender44 has joined the server (290:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender45 has joined the server (289:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender46 has joined the server (288:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender47 has joined the server (287:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender48 has joined the server (286:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender49 has joined the server (285:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender50 has joined the server (284:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender51 has joined the server (283:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender52 has joined the server (282:127.0.0.1)
[18:40:00] [npc:join] [BOT]Bartender53 has joined the server (281:127.0.0.1)
[18:40:00] [npc:join] [BOT]BurgerWorker54 has joined the server (280:127.0.0.1)
[18:40:00] [npc:join] [BOT]BurgerWorker55 has joined the server (279:127.0.0.1)
[18:40:00] [npc:join] [BOT]BurgerWorker56 has joined the server (278:127.0.0.1)
[18:40:00] [npc:join] [BOT]BurgerWorker57 has joined the server (277:127.0.0.1)
[18:40:00] [npc:join] [BOT]BurgerWorker58 has joined the server (276:127.0.0.1)
[18:40:00] [npc:join] [BOT]BurgerWorker59 has joined the server (275:127.0.0.1)
[18:40:00] [npc:join] [BOT]BurgerWorker60 has joined the server (274:127.0.0.1)
[18:40:00] [npc:join] [BOT]BurgerWorker61 has joined the server (273:127.0.0.1)
[18:40:00] [npc:join] [BOT]BurgerWorker62 has joined the server (272:127.0.0.1)
[18:40:00] [npc:join] [BOT]BurgerWorker63 has joined the server (271:127.0.0.1)
[18:40:00] [npc:join] [BOT]ChickenWorker64 has joined the server (270:127.0.0.1)
[18:40:00] [npc:join] [BOT]ChickenWorker65 has joined the server (269:127.0.0.1)
[18:40:00] [npc:join] [BOT]ChickenWorker66 has joined the server (268:127.0.0.1)
[18:40:00] [npc:join] [BOT]ChickenWorker67 has joined the server (267:127.0.0.1)
[18:40:00] [npc:join] [BOT]ChickenWorker68 has joined the server (266:127.0.0.1)
[18:40:00] [npc:join] [BOT]ChickenWorker69 has joined the server (265:127.0.0.1)
[18:40:00] [npc:join] [BOT]ChickenWorker70 has joined the server (264:127.0.0.1)
[18:40:00] [npc:join] [BOT]ChickenWorker71 has joined the server (263:127.0.0.1)
[18:40:00] [npc:join] [BOT]ChickenWorker72 has joined the server (262:127.0.0.1)
[18:40:00] [npc:join] [BOT]ChickenWorker73 has joined the server (261:127.0.0.1)
[18:40:00] [npc:join] [BOT]ChickenWorker74 has joined the server (260:127.0.0.1)
[18:40:00] [npc:join] [BOT]ChickenWorker75 has joined the server (259:127.0.0.1)
[18:40:00] [npc:join] [BOT]PizzaWorker76 has joined the server (258:127.0.0.1)
[18:40:00] [npc:join] [BOT]PizzaWorker77 has joined the server (257:127.0.0.1)
[18:40:00] [npc:join] [BOT]PizzaWorker78 has joined the server (256:127.0.0.1)
[18:40:00] [npc:join] [BOT]PizzaWorker79 has joined the server (255:127.0.0.1)
[18:40:00] [npc:join] [BOT]PizzaWorker80 has joined the server (254:127.0.0.1)
[18:40:00] [npc:join] [BOT]PizzaWorker81 has joined the server (253:127.0.0.1)
[18:40:00] [npc:join] [BOT]PizzaWorker82 has joined the server (252:127.0.0.1)
[18:40:00] [npc:join] [BOT]PizzaWorker83 has joined the server (251:127.0.0.1)
[18:40:00] [npc:join] [BOT]PizzaWorker84 has joined the server (250:127.0.0.1)
[18:40:00] [npc:join] [BOT]PizzaWorker85 has joined the server (249:127.0.0.1)
[18:40:00] [npc:join] [BOT]247Worker86 has joined the server (248:127.0.0.1)
[18:40:00] [npc:join] [BOT]247Worker87 has joined the server (247:127.0.0.1)
[18:40:00] [npc:join] [BOT]247Worker88 has joined the server (246:127.0.0.1)
[18:40:00] [npc:join] [BOT]247Worker89 has joined the server (245:127.0.0.1)
[18:40:00] [npc:join] [BOT]247Worker90 has joined the server (244:127.0.0.1)
[18:40:00] [npc:join] [BOT]247Worker91 has joined the server (243:127.0.0.1)
[18:40:00] [npc:join] [BOT]247Worker92 has joined the server (242:127.0.0.1)
[18:40:00] [npc:join] [BOT]247Worker93 has joined the server (241:127.0.0.1)
[18:40:00] [npc:join] [BOT]247Worker94 has joined the server (240:127.0.0.1)
[18:40:00] [npc:join] [BOT]247Worker95 has joined the server (239:127.0.0.1)
[18:40:00] [npc:join] [BOT]247Worker96 has joined the server (238:127.0.0.1)
[18:40:00] [npc:join] [BOT]247Worker97 has joined the server (237:127.0.0.1)
[18:40:00] [npc:join] [BOT]247Worker98 has joined the server (236:127.0.0.1)
[18:40:00] [npc:join] [BOT]Barber99 has joined the server (235:127.0.0.1)
[18:40:00] [npc:join] [BOT]Barber100 has joined the server (234:127.0.0.1)
[18:40:00] [npc:join] [BOT]Barber101 has joined the server (233:127.0.0.1)
[18:40:00] [npc:join] [BOT]Barber102 has joined the server (232:127.0.0.1)
[18:40:00] [npc:join] [BOT]Barber103 has joined the server (231:127.0.0.1)
[18:40:00] [npc:join] [BOT]Barber104 has joined the server (230:127.0.0.1)
[18:40:00] [npc:join] [BOT]Barber105 has joined the server (229:127.0.0.1)
[18:40:00] [npc:join] [BOT]DonutWorker106 has joined the server (228:127.0.0.1)
[18:40:00] [npc:join] [BOT]DonutWorker107 has joined the server (227:127.0.0.1)
[18:40:00] [npc:join] [BOT]DonutWorker108 has joined the server (226:127.0.0.1)
[18:40:00] [npc:join] [BOT]Stripper109 has joined the server (225:127.0.0.1)
[18:40:00] [npc:join] [BOT]Stripper110 has joined the server (224:127.0.0.1)
[18:40:00] [npc:join] [BOT]Otto111 has joined the server (223:127.0.0.1)
[18:40:00] [npc:join] [BOT]Salesman112 has joined the server (222:127.0.0.1)
[18:40:00] [npc:join] [BOT]Jizzy113 has joined the server (221:127.0.0.1)
[18:40:00] [npc:join] [BOT]DidierSachClerk114 has joined the server (220:127.0.0.1)
[18:40:00] [npc:join] [BOT]SteakhouseOwner115 has joined the server (219:127.0.0.1)
[18:40:00] [npc:join] [BOT]SteakhouseOwner116 has joined the server (218:127.0.0.1)
[18:40:00] [npc:join] [BOT]SteakhouseOwner117 has joined the server (217:127.0.0.1)
[18:40:00] [npc:join] [BOT]SteakhouseOwner118 has joined the server (216:127.0.0.1)
[18:40:00] [npc:join] [BOT]SteakhouseOwner119 has joined the server (215:127.0.0.1)
[18:40:00] [npc:join] [BOT]Priest120 has joined the server (214:127.0.0.1)
[18:40:00] [npc:join] [BOT]Priest121 has joined the server (213:127.0.0.1)
[18:40:00] [npc:join] [BOT]Priest122 has joined the server (212:127.0.0.1)
[18:40:00] [npc:join] [BOT]Priest123 has joined the server (211:127.0.0.1)
[18:40:00] [npc:join] [BOT]Priest124 has joined the server (210:127.0.0.1)
[18:40:00] [npc:join] [BOT]Priest125 has joined the server (209:127.0.0.1)
[18:40:00] [npc:join] [BOT]HotelBartender126 has joined the server (208:127.0.0.1)
[18:40:00] [npc:join] [BOT]VehicleDealer127 has joined the server (207:127.0.0.1)
[18:40:00] [npc:join] [BOT]VehicleDealer128 has joined the server (206:127.0.0.1)
[18:40:00] [npc:join] [BOT]VehicleDealer129 has joined the server (205:127.0.0.1)
[18:40:00] [npc:join] [BOT]Banker130 has joined the server (204:127.0.0.1)
[18:40:00] [npc:join] [BOT]Banker131 has joined the server (203:127.0.0.1)
[18:40:00] [npc:join] [BOT]Banker132 has joined the server (202:127.0.0.1)
[18:40:00] [npc:join] [BOT]Banker133 has joined the server (201:127.0.0.1)
[18:40:00] [npc:join] [BOT]Pawnbroker134 has joined the server (200:127.0.0.1)
[18:40:00] [npc:join] [BOT]Pawnbroker135 has joined the server (199:127.0.0.1)
[18:40:00] [npc:join] [BOT]Pawnbroker136 has joined the server (198:127.0.0.1)
[18:40:00] [npc:join] [BOT]GasCashier137 has joined the server (197:127.0.0.1)
[18:40:00] [npc:join] [BOT]GasCashier138 has joined the server (196:127.0.0.1)
[18:40:00] [npc:join] [BOT]GasCashier139 has joined the server (195:127.0.0.1)
[18:40:00] [npc:join] [BOT]GasCashier140 has joined the server (194:127.0.0.1)
[18:40:00] [npc:join] [BOT]GasCashier141 has joined the server (193:127.0.0.1)
[18:40:00] [npc:join] [BOT]GasCashier142 has joined the server (192:127.0.0.1)
[18:40:00] [npc:join] [BOT]GasCashier143 has joined the server (191:127.0.0.1)
[18:40:00] [npc:join] [BOT]GasCashier144 has joined the server (190:127.0.0.1)
[18:40:00] [npc:join] [BOT]GasCashier145 has joined the server (189:127.0.0.1)
[18:40:00] [npc:join] [BOT]GasCashier146 has joined the server (188:127.0.0.1)
[18:40:00] [npc:join] [BOT]GasCashier147 has joined the server (187:127.0.0.1)
[18:40:00] [npc:join] [BOT]GasCashier148 has joined the server (186:127.0.0.1)
[18:40:00] [npc:join] [BOT]GasCashier149 has joined the server (185:127.0.0.1)
[18:40:00] [npc:join] [BOT]GasCashier150 has joined the server (184:127.0.0.1)
[18:40:00] [npc:join] [BOT]TriadBoss151 has joined the server (183:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad0 has joined the server (182:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad1 has joined the server (181:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad2 has joined the server (180:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad3 has joined the server (179:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad4 has joined the server (178:127.0.0.1)
[18:40:00] [npc:join] [BOT]TriadBoss152 has joined the server (177:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad5 has joined the server (176:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad6 has joined the server (175:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad7 has joined the server (174:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad8 has joined the server (173:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad9 has joined the server (172:127.0.0.1)
[18:40:00] [npc:join] [BOT]TriadBoss153 has joined the server (171:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad10 has joined the server (170:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad11 has joined the server (169:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad12 has joined the server (168:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad13 has joined the server (167:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad14 has joined the server (166:127.0.0.1)
[18:40:00] [npc:join] [BOT]TriadBoss154 has joined the server (165:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad15 has joined the server (164:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad16 has joined the server (163:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad17 has joined the server (162:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad18 has joined the server (161:127.0.0.1)
[18:40:00] [npc:join] [BOT]Triad19 has joined the server (160:127.0.0.1)
[18:40:00] [npc:join] [BOT]MafiaBoss155 has joined the server (159:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier20 has joined the server (158:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier21 has joined the server (157:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier22 has joined the server (156:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier23 has joined the server (155:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier24 has joined the server (154:127.0.0.1)
[18:40:00] [npc:join] [BOT]MafiaBoss156 has joined the server (153:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier25 has joined the server (152:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier26 has joined the server (151:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier27 has joined the server (150:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier28 has joined the server (149:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier29 has joined the server (148:127.0.0.1)
[18:40:00] [npc:join] [BOT]MafiaBoss157 has joined the server (147:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier30 has joined the server (146:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier31 has joined the server (145:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier32 has joined the server (144:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier33 has joined the server (143:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier34 has joined the server (142:127.0.0.1)
[18:40:00] [npc:join] [BOT]MafiaBoss158 has joined the server (141:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier35 has joined the server (140:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier36 has joined the server (139:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier37 has joined the server (138:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier38 has joined the server (137:127.0.0.1)
[18:40:00] [npc:join] [BOT]Soldier39 has joined the server (136:127.0.0.1)
[18:40:00] [npc:join] [BOT]MilitiaBoss has joined the server (135:127.0.0.1)
[18:40:00] [npc:join] [BOT]Militia40 has joined the server (134:127.0.0.1)
[18:40:00] [npc:join] [BOT]Militia41 has joined the server (133:127.0.0.1)
[18:40:00] [npc:join] [BOT]Militia42 has joined the server (132:127.0.0.1)
[18:40:00] [npc:join] [BOT]Militia43 has joined the server (131:127.0.0.1)
[18:40:00] [npc:join] [BOT]Militia44 has joined the server (130:127.0.0.1)
[18:40:00] [npc:join] [BOT]Militia45 has joined the server (129:127.0.0.1)
[18:40:00] [npc:join] [BOT]Militia46 has joined the server (128:127.0.0.1)
[18:40:00] [ROBBERIES]: 191 safe robberies have been successfully loaded.
[18:40:01] [POOL TABLES]: 37 pool tables have been successfully loaded.
[18:40:01]  * [TPoker]: TPoker by ThreeKingz has been succesfully loaded!
[18:40:01] [npc:join] [BOT]VisageCashier160 has joined the server (127:127.0.0.1)
[18:40:01] [npc:join] [BOT]VisageCashier161 has joined the server (126:127.0.0.1)
[18:40:01] -> Boxing System - By: Damen
[18:40:01] MapAndreas successfully initiated

Skins for version 0.3.9

$
0
0
Greetings to all users of the forum sa-mp! Due to the fact that Kalkor promised to add new skins to version 0.3.9, I would like to invite all not indifferent forum participants to lay out the skins that they would like to see in the new version in this topic so that Kalkor sees what the multiplayer audience wants.

TextDraw

$
0
0
Hey, I can't really manage to find a working textdraw creator on the samp forums. (FS),
If you could give me a working one (with plugins,amx,include etc.) That'd be great.

[Ajuda] TextDraw nao mostra corretamente

$
0
0
Ok estou tento um problema com uma textdraw que criei para os jogadores, o player digita /an [texto] e o que ele digitou vai para a textdraw que e mostrada para todos os jogadores, o problema e que ela fica toda defeituosa KKK

Print da TextDraw (Em baixo proximo ao rodape) : https://imgur.com/a/vRIWyT5

PHP Code:

//Criar txd
AnuncioTD TextDrawCreate(188.000000421.000000"~g~Anuncio: ~w~, ~g~Contato: [ID: ~w~8~g~] Celular: [~w~4894~g~]");
TextDrawFont(AnuncioTD1);
TextDrawLetterSize(AnuncioTD0.2291671.500000);
TextDrawTextSize(AnuncioTD400.00000017.000000);
TextDrawSetOutline(AnuncioTD1);
TextDrawSetShadow(AnuncioTD1);
TextDrawAlignment(AnuncioTD1);
TextDrawColor(AnuncioTD, -1);
TextDrawBackgroundColor(AnuncioTD255);
TextDrawBoxColor(AnuncioTD50);
TextDrawUseBox(AnuncioTD0);
TextDrawSetProportional(AnuncioTD1);
TextDrawSetSelectable(AnuncioTD0);

//no comando
format(stringsizeof(string), "{539552}Anuncio: {FFFFFF}%s, {539552}Contato: [ID: {FFFFFF}%d{539552}] Celular: [{FFFFFF}%d{539552}]"result,sendername,playerid,PlayerInfo[playerid][pPnumber]);
TextDrawSetString(AnuncioTDstring);
for(new 
i=0;i<MAX_PLAYERS;i++)
{
    
TextDrawShowForPlayer(iAnuncioTD);
     
HideAnuncio SetTimer("EsconderAnuncio"60000false);


Viewing all 18226 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>