| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 473 online users. » 0 Member(s) | 469 Guest(s) Bing, Applebot, Google, Yandex
|
| Latest Threads |
GTA San Andreas - The mov...
Forum: Chat
Last Post: ontrelbranch
11 hours ago
» Replies: 1
» Views: 355
|
Looking for Players for N...
Forum: Advertisements
Last Post: AlmightyJeremy
Yesterday, 03:36 PM
» Replies: 0
» Views: 28
|
Algemene Discussies
Forum: Dutch/Nederlands
Last Post: Eamon
Yesterday, 12:03 AM
» Replies: 41
» Views: 85,280
|
Help me find a current ar...
Forum: Tech
Last Post: KOZYR
2026-04-24, 03:53 PM
» Replies: 0
» Views: 58
|
Czy SA:MP RP jeszcze żyje...
Forum: Ogólne
Last Post: Sztakier
2026-04-24, 09:11 AM
» Replies: 0
» Views: 59
|
Donald Trump wars every c...
Forum: Life
Last Post: NoxxeR
2026-04-23, 08:04 PM
» Replies: 0
» Views: 70
|
Ajuda com salvamento nao ...
Forum: Portuguese/Português
Last Post: zGu1Zin_
2026-04-22, 10:05 PM
» Replies: 0
» Views: 59
|
PawnPro 3.0 — Extensão VS...
Forum: Portuguese/Português
Last Post: NullSablex
2026-04-19, 10:58 AM
» Replies: 0
» Views: 80
|
Harmony Maps
Forum: Maps
Last Post: Harmony
2026-04-19, 09:36 AM
» Replies: 0
» Views: 104
|
SOLS Roleplay (2026)
Forum: Advertisements
Last Post: TyDolla
2026-04-18, 04:47 PM
» Replies: 0
» Views: 131
|
|
|
| Gamemode is not detected |
|
Posted by: fzbian - 2021-06-22, 12:25 AM - Forum: Pawn Scripting
- Replies (2)
|
 |
Sorry for my English
I am learning Pawno however I have had a few problems when starting my server, one of those is this:
![[Image: unknown.png?width=919&height=480]](https://media.discordapp.net/attachments/853035497961553923/856690202609057792/unknown.png?width=919&height=480)
I was googling this error however I did not find a concrete solution, here I leave you my gamemode and my files in case someone has the solution, I would appreciate it very much
My server.cfg
Code: echo Executing Server Config...
lanmode 0
rcon_password asd
maxplayers 50
port 7777
hostname SA-MP 0.3 Server
gamemode0 bare
plugins pawncmd streamer
query 1
chatlogging 0
weburl www.sa-mp.com
onfoot_rate 40
incar_rate 40
weapon_rate 40
stream_distance 300.0
stream_rate 1000
maxnpc 0
logtimeformat [%H:%M:%S]
language English
My gamemode
https://pastebin.com/2yqDMZ5L
My plugins folder:
|
|
|
|
| [HELP] Pawn scripting problem |
|
Posted by: Haitam - 2021-06-20, 03:22 PM - Forum: Support
- Replies (2)
|
 |
When i downloaded SAMP map editor i run it and it's say i need to update my graphic card but i already have latest version please anyone have a solution for this, i very need it.
Tanks
|
|
|
|
| Streamer Duplicating Objects |
|
Posted by: Obie Jones - 2021-06-20, 01:57 PM - Forum: Pawn Scripting
- Replies (1)
|
 |
Greetings everyone,
Did anyone have experience with streamer or script duplicating objects from the mapping.pwn?
It happens up to 20 times, same object spawned so many times for unknown reason.
Suggestions?
Thanks.
|
|
|
|
| VIP System for gang wars/TDM |
|
Posted by: Abraar - 2021-06-19, 05:53 PM - Forum: Filterscripts
- Replies (1)
|
 |
Hello :D
I own a server, but I wanted a VIP Sytem for my gang wars gamemode . Also, I am searching for developers for our server (Developers will be set as admin lvl 6 in game)
HostName: LSGW? -? Los Santos Gang Wars
Address:? 45.9.190.242:2455
Contact me: Wincenzo#1826
|
|
|
|
| samp.ban |
|
Posted by: pushline - 2021-06-18, 10:08 PM - Forum: Portuguese/Português
- Replies (1)
|
 |
Meu comando de ban adiciona um arquivo .ini (dof2) numa pasta bans e ipbans, e adiciona o IP na samp.ban.?
Eu quero desativar que o comando ban adicione o ip na samp.ban
C?digo
PHP Code: #define Ban(%0) SetTimerEx("Banir", 200, false, "i", %0)
function::Banir(playerid) {
#undef Ban
Ban(playerid);
#define Ban(%0) SetTimerEx("Banir", 200, false, "i", %0)
return 1;
}
CMD:banir(playerid, params[])
{
if (!APlayerData[playerid][pLogged])
? ? return SendClientMessage(playerid, COLOR_GRAD1, " Voc? n?o est? logado.");
? ? if (APlayerData[playerid][pAdmin] < 1)
? ? ? ? return SendClientMessage(playerid, COLOR_GRAD1, "? Voc? n?o ? um administrador.");
? ? new id, ReasonBan1[30], Stringa[156];
? ? if (sscanf(params, "us[30]", id, ReasonBan1))
? ? ? ? return SendClientMessage(playerid, COLOR_GRAD1, " (DICA): Use (/ban) [ID/Parte do nome] [Reason]");
? ?
? ? if (APlayerData[id][pLogged] > APlayerData[playerid][pLogged])
? ? ? ? return SendClientMessage(playerid, COLOR_GRAD1, "? Voc? n?o pode banir um administrador de n?vel maior que o seu.");
? ? if (id == playerid)
? ? ? ? return SendClientMessage(playerid, COLOR_GRAD1, "Voc? n?o pode banir a si mesmo");
if(APlayerData[playerid][pAdmin] > 0)
{
? ? DOF2_CreateFile(GetBanFile(id));
? ? DOF2_SetString(GetBanFile(id), "Name", pName[id]);
? ? DOF2_SetString(GetBanFile(id), "Admin", pName[playerid]);
? ? DOF2_SetString(GetBanFile(id), "Reason", ReasonBan1);
? ? DOF2_SetString(GetBanFile(id), "Date", GetDate());
? ? DOF2_SetString(GetBanFile(id), "IP", pIP[id]);
? ? DOF2_SaveFile();
? ? DOF2_CreateFile(GetIPFile(id));
? ? DOF2_SetString(GetIPFile(id), "Name", pName[id]);
? ? DOF2_SetString(GetIPFile(id), "Admin", pName[playerid]);
? ? DOF2_SetString(GetIPFile(id), "Reason", ReasonBan1);
? ? DOF2_SetString(GetIPFile(id), "Date", GetDate());
? ? DOF2_SetString(GetIPFile(id), "IP", pIP[id]);
? ? DOF2_SaveFile();
? ? ? ? format(Stringa, sizeof(Stringa), "%s %s baniu o player %s, motivo: %s",AdmCargo[APlayerData[playerid][pAdmin]], pName[playerid], pName[id], ReasonBan1);
? ? SendClientMessageToAll(COLOR_LIGHTRED, Stringa);
? ? format(Stringa, sizeof(Stringa), "BanLog: %s foi banido pelo admin %s, motivo: %s (%s)", pName[id], pName[playerid], ReasonBan1, GetDate());
? ? BanLog(Stringa);
Ban(id);
}
else if(APlayerData[playerid][pAdminTemp] > 0)
{
? ? DOF2_CreateFile(GetBanFile(id));
? ? DOF2_SetString(GetBanFile(id), "Name", pName[id]);
? ? DOF2_SetString(GetBanFile(id), "Admin", pName[playerid]);
? ? DOF2_SetString(GetBanFile(id), "Reason", ReasonBan1);
? ? DOF2_SetString(GetBanFile(id), "Date", GetDate());
? ? DOF2_SetString(GetBanFile(id), "IP", pIP[id]);
? ? DOF2_SaveFile();
? ? DOF2_CreateFile(GetIPFile(id));
? ? DOF2_SetString(GetIPFile(id), "Name", pName[id]);
? ? DOF2_SetString(GetIPFile(id), "Admin", pName[playerid]);
? ? DOF2_SetString(GetIPFile(id), "Reason", ReasonBan1);
? ? DOF2_SetString(GetIPFile(id), "Date", GetDate());
? DOF2_SetString(GetIPFile(id), "IP", pIP[id]);
? ? DOF2_SaveFile();
? ? ? ? format(Stringa, sizeof(Stringa), "%s %s baniu o player %s, motivo: %s", AdmCargo[APlayerData[playerid][pLogged]], pName[playerid], pName[id], ReasonBan1);
? ? SendClientMessageToAll(COLOR_LIGHTRED, Stringa);
? ? format(Stringa, sizeof(Stringa), "BanLog: %s foi banido pelo admin %s, motivo: %s (%s)", pName[id], pName[playerid], ReasonBan1, GetDate());
? ? BanLog(Stringa);
? ? ? ? Ban(id);
}
? ? return 1;
}
|
|
|
|
| How to save player stats in mysql? |
|
Posted by: CrypticSin - 2021-06-16, 10:15 PM - Forum: Pawn Scripting
- Replies (3)
|
 |
Hi, i need help with saving player stats like kills, deaths, health etc in mysql.
I've created columns for them on php myadmin using xampp?but i dont know how to input them into code on Pawn.
Any help would be appreciated.
|
|
|
|
| Help with safe box system |
|
Posted by: JR_Junior - 2021-06-16, 09:49 PM - Forum: Pawn Scripting
- Replies (8)
|
 |
I'm trying to create a closed and open door safe box?system.
I would like to be able to create a safe box anywhere and automatically have the door positioned correctly.
Does anyone know the correct calculation for this?
PHP Code: new safe =?CreateDynamicObject(19618, 414.47070, 2537.35913, 9.45900,? 0.00000, 0.00000, 90.00000); new door =?CreateDynamicObject(19619, 414.70401, 2536.93848, 9.45800,? 0.00000, 0.00000, 90.00000);
The function I intend to use:
PHP Code: stock CreateSafeBox(Float:px,Float:py,Float:pz,Float:rz) { CreateDynamicObject(px, py, pz? 0.0, 0.0, rz);//Safe CreateDynamicObject(px, py, pz? 0.0, 0.0, rz);//Door return 1; }
|
|
|
|
|