Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 7,497
» Latest member: satapisenoki84070
» Forum threads: 2,412
» Forum posts: 12,359

Full Statistics

Online Users
There are currently 688 online users.
» 0 Member(s) | 685 Guest(s)
Bing, Google, Applebot

Latest Threads
Adding new vehicles and s...
Forum: Programming
Last Post: __.A.__
Yesterday, 07:47 PM
» Replies: 0
» Views: 50
Zona América del Sur Free...
Forum: Advertisements
Last Post: kevinberriosflores
Yesterday, 02:16 PM
» Replies: 1
» Views: 71
Busco copia de gamemode S...
Forum: Spanish/Espa?ol
Last Post: briancristaldo2021
2025-09-11, 11:14 AM
» Replies: 0
» Views: 60
[Tutorial] Registrando o ...
Forum: Portuguese/Portugu?s
Last Post: Crazy_ArKzX
2025-09-09, 08:36 PM
» Replies: 0
» Views: 204
San Andreas Police Pursui...
Forum: Advertisements
Last Post: BriBri
2025-09-08, 10:09 PM
» Replies: 1
» Views: 294
Problem with plugins load...
Forum: Support
Last Post: MrKacu13
2025-09-08, 07:15 PM
» Replies: 9
» Views: 369
Compilation error
Forum: Pawn Scripting
Last Post: MrKacu13
2025-09-07, 07:18 AM
» Replies: 6
» Views: 354
Need help, problem when i...
Forum: Programming
Last Post: nonickowned
2025-09-06, 06:21 PM
» Replies: 0
» Views: 146
Transfer server from SAMP...
Forum: Support
Last Post: MrKacu13
2025-09-06, 04:03 PM
» Replies: 1
» Views: 238
Not relevant anymore
Forum: Questions and Suggestions
Last Post: peti
2025-09-05, 02:00 PM
» Replies: 0
» Views: 194

 
  How can I make players invincible?
Posted by: XDK6 - 2021-06-25, 03:38 AM - Forum: Pawn Scripting - Replies (3)

Hello guys! I'm a newbie scripter. I needd help how to make a playerid invincible.


  Pawn Coders - Discord server advertisement
Posted by: Connoisseur - 2021-06-24, 06:53 PM - Forum: General Discussions - Replies (2)

Pawn Coders is officially created by Portuguese/Spanish PAWN developers and is a place where people can request help, find useful resources, or even release one of their own. The idea came from one of the desires, helping. To wrap everything up, and save you from pointless numerous words, we are almost the same community, but now officially created in English that want to expand, and help the ones that need it.



Join now!

->?https://discord.com/invite/WJmygWFmtt



Current partner(s):

->?https://discord.gg/Dd8jKyQdq3


Information How are the laws out there?
Posted by: Otakeiro - 2021-06-24, 01:19 PM - Forum: Life - No Replies

Ultimamente nossos policiais est?o sofrendo correndo atr?s de L?zaro (400 soldados atr?s de 1 pessoa), eles cercaram a ?rea e ainda n?o pegaram o infeliz.



Ele estava na pris?o, tinha direito a uma "pequena sa?da" (algo como: voc? est? livre por um tempo, fuja)



Pior, eles desarmaram a sociedade (mas n?o os bandidos), n?o temos pris?o perp?tua e as leis que temos n?o o mant?m na pris?o.



L?zaro est? 16 dias no mato, mais de 400 policiais incluindo c?es de ca?a e boa tecnologia e quando pego pode pegar no m?ximo 4 anos de pris?o por assassinato em s?rie



Se isso acontecesse l?, a lei seria t?o frouxa quanto no Brasil?


  Dark forum style
Posted by: Awide - 2021-06-23, 09:53 PM - Forum: Questions and Suggestions - Replies (2)

Could you add a dark forum style? It could even be a default MyBB style as well, just to avoid mosquitoes raiding our monitor.


  Extended vehicle rotation
Posted by: Otakeiro - 2021-06-23, 08:01 PM - Forum: Pawn Scripting - Replies (2)

Solved...


Exclamation [AJUDA] Ajuda com c?digo
Posted by: Pedxz - 2021-06-23, 07:36 PM - Forum: Portuguese/Portugu?s - Replies (2)

Eu tenho esta linha de c?digos:

Code:
CMD:cv(playerid, params[])

{

if(aInfo[playerid][Admin] == 0) return SendClientMessage(playerid, COLOR_ERRO, "[ x ] Voc? n?o tem permiss?o!");



new sVeiculo[50], vehicleid, modeloid, cor1, cor2;



if(sscanf(params, "s[50]dd", sVeiculo, cor1, cor2)) return SendClientMessage(playerid, COLOR_ERRO, "[ x ] Uso correto: /CV [ Ve?culo ID / Nome ] [ Cor 1 ] [ Cor 2 ]");



if(cor1 < 0 || cor1 > 255 || cor2 < 0 || cor2 > 255) return SendClientMessage(playerid, COLOR_ERRO, "[ x ] Use IDs de cores de 0 a 255!");



if(IsNumeric(sVeiculo)) modeloid = strval(sVeiculo);

else modeloid = ReturnVehicleID(sVeiculo);



if(modeloid < 400 || modeloid > 611 || modeloid == -1) return SendClientMessage(playerid, COLOR_ERRO, "[ x ] Modelo de ve?culo inv?lido!");



new Float:pPos[4];



GetPlayerPos(playerid, pPos[0], pPos[1], pPos[2]);

GetPlayerFacingAngle(playerid, pPos[3]);



vehicleid = CreateVehicle(modeloid, pPos[0], pPos[1], pPos[2], pPos[3], cor1, cor2, -1);



vCriado[vehicleid] = true;



LinkVehicleToInterior(vehicleid, GetPlayerInterior(playerid));

SetVehicleVirtualWorld(vehicleid, GetPlayerVirtualWorld(playerid));



PutPlayerInVehicle(playerid, vehicleid, 0);

PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);



format(gStr, sizeof(gStr), "[BPL] Ve?culo %s criado com sucesso! ( Modelo ID: %d - Ve?culo ID: %d )", GetVehicleModelNameEx(modeloid), modeloid, vehicleid);

? ? SendClientMessage(playerid, COLOR_VERDECMD, gStr);

? ? return 1;

}



CMD:criarveiculo(playerid, params[])

{

new sCMD[50];

format(sCMD, sizeof(sCMD), "/cv %s", params);



ExecutarComando(playerid, sCMD);

return 1;

}



// -------------------------------------------------------------------------------------------------------------- //



CMD:dv(playerid)

{

if(aInfo[playerid][Admin] == 0) return SendClientMessage(playerid, COLOR_ERRO, "[ x ] Voc? n?o tem permiss?o!");



if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, COLOR_ERRO, "[ x ] Voc? n?o est? em um ve?culo!");



new vehicleid = GetPlayerVehicleID(playerid);



if(vCriado[vehicleid] == false) return SendClientMessage(playerid, COLOR_ERRO, "[ x ] Voc? s? pode destruir ve?culos criados!");



format(gStr, sizeof(gStr), "[BPL] Ve?culo %s exclu?do com sucesso! (ID %d)", GetVehicleModelName(vehicleid), vehicleid);

SendClientMessage(playerid, COLOR_VERDECMD, gStr);



sDestroyVehicle(vehicleid);

PlayerPlaySound(playerid, 1057, 0.0, 0.0, 0.0);



Streamer_Update(playerid);

return 1;

}





Por?m, ao compilar esses erros surgem e eu n?o entendo o porque:


Code:
C:\Users\Matheus\Desktop\BPL GAMES 2.0 - Copia\gamemodes\bpl.pwn(303) : warning 216: nested comment[/align]



[align=left]C:\Users\Matheus\Desktop\BPL GAMES 2.0 - Copia\gamemodes\bpl.pwn(312) : error 017: undefined symbol "Admin"[/align]



[align=left]C:\Users\Matheus\Desktop\BPL GAMES 2.0 - Copia\gamemodes\bpl.pwn(320) : error 017: undefined symbol "IsNumeric"[/align]



[align=left]C:\Users\Matheus\Desktop\BPL GAMES 2.0 - Copia\gamemodes\bpl.pwn(321) : error 017: undefined symbol "ReturnVehicleID"[/align]



[align=left]C:\Users\Matheus\Desktop\BPL GAMES 2.0 - Copia\gamemodes\bpl.pwn(340) : error 017: undefined symbol "GetVehicleModelNameEx"[/align]



[align=left]C:\Users\Matheus\Desktop\BPL GAMES 2.0 - Copia\gamemodes\bpl.pwn(350) : error 017: undefined symbol "ExecutarComando"[/align]



[align=left]C:\Users\Matheus\Desktop\BPL GAMES 2.0 - Copia\gamemodes\bpl.pwn(358) : error 017: undefined symbol "Admin"[/align]



[align=left]C:\Users\Matheus\Desktop\BPL GAMES 2.0 - Copia\gamemodes\bpl.pwn(366) : error 017: undefined symbol "GetVehicleModelName"[/align]



[align=left]C:\Users\Matheus\Desktop\BPL GAMES 2.0 - Copia\gamemodes\bpl.pwn(369) : error 017: undefined symbol "sDestroyVehicle"[/align]



[align=left]C:\Users\Matheus\Desktop\BPL GAMES 2.0 - Copia\gamemodes\bpl.pwn(376) : warning 203: symbol is never used: "PlayerInfo"[/align]



[align=left]Pawn compiler 3.10.4 Copyright (c) 1997-2006, ITB CompuPhase[/align]







[align=left]8 Errors.[/align]



[align=left]







Poderiam me ajudar? E me dizer qual foi o causador dos erros?


  Run sa-mp server in android terminal
Posted by: Otakeiro - 2021-06-23, 04:50 PM - Forum: Programming - Replies (3)

super solved...


Question Detect Holding Key
Posted by: GeorgeXCarl - 2021-06-23, 11:07 AM - Forum: Pawn Scripting - Replies (5)

is there any way?how can i check if a player is holding the KEY_SPRINT button?


  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]



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:

[Image: unknown.png]


  HELP! How to Make Moving, Running, Text Draw With Box ?
Posted by: PutuSuhartawan - 2021-06-21, 07:58 PM - Forum: Pawn Scripting - Replies (8)

Ilustration :?youtube.com/watch?v=8-laOTcqCj0