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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 7,738
» Latest member: UncleK4XN
» Forum threads: 2,364
» Forum posts: 12,315

Full Statistics

Online Users
There are currently 264 online users.
» 0 Member(s) | 259 Guest(s)
Applebot, Google, Bing, Yandex, DuckDuckGo

Latest Threads
Real-time pathfinder, opt...
Forum: Pawn Scripting
Last Post: ejtamovic
2 hours ago
» Replies: 0
» Views: 11
GTA San Andreas Definitiv...
Forum: General Discussions
Last Post: traumasmart29
Yesterday, 05:34 AM
» Replies: 7
» Views: 26,037
The size of the output am...
Forum: Questions and Suggestions
Last Post: scandalfive
2025-12-01, 07:07 PM
» Replies: 0
» Views: 60
Слоты
Forum: Russian/???????
Last Post: muck092
2025-12-01, 06:32 PM
» Replies: 1
» Views: 1,942
Garsiono's, Ricardo's, Tr...
Forum: Advertisements
Last Post: drwnrbbt
2025-12-01, 10:15 AM
» Replies: 0
» Views: 55
After School Roleplay [ R...
Forum: Advertisements
Last Post: cosminupgaming
2025-11-29, 09:39 PM
» Replies: 1
» Views: 312
Voltage Roleplay [English...
Forum: Advertisements
Last Post: JamesC
2025-11-29, 09:27 PM
» Replies: 0
» Views: 47
Vice WRLD Freeroam/RP
Forum: Advertisements
Last Post: pdjumailiev
2025-11-24, 11:30 AM
» Replies: 0
» Views: 117
Wanting to Start a RP Ser...
Forum: Chat
Last Post: Wein
2025-11-24, 09:07 AM
» Replies: 1
» Views: 251
Help me for creating a fr...
Forum: General Discussions
Last Post: [Rs]VeNoM
2025-11-23, 07:33 AM
» Replies: 0
» Views: 94

 
  Server is starting, but not visible in the client
Posted by: Luciano - 2019-09-23, 08:47 PM - Forum: Support - Replies (1)

Hello, I'm trying to run a server on VPS running CentOS 7 64bit.

I'm trying with the default SA-MP package, so the default game modes and everything. The server is starting (server log is fine), but it's not responding in the client.



Permissions are fine, I don't use any plugins, and I added "bind [ipaddress]" and "announce 1" in the server.cfg.


  Paying for SAMP SCRIPTER
Posted by: Samper123 - 2019-09-22, 10:35 PM - Forum: Pawn Scripting - No Replies

Hi, i need a samp scripter to finish my gang script and add zones/turfs to the gangs i currently have with some textdraws when attacking/defending a hood.?
?
Please message me on discord
Samper123#5056


  Burgershot.gg Mobile Version
Posted by: Sasino97 - 2019-09-19, 04:10 PM - Forum: Questions and Suggestions - Replies (1)

I have a few suggestions for the mobile website of burgershot.gg



First, the navigation bar is pretty useless as it is now.

What is the point of having a fixed bar all the time, only displaying the burgershot logo.?



I suggest putting a hamburger menu on the bar showing the login/control panel actions.?





Second, please fix the new thread page, because it's being cut in half vertically.

Later I will post screenshots so you can see what I mean.?



Thanks


  Whats different with this 1 line and multi (MySQL)
Posted by: Zow - 2019-09-16, 04:57 PM - Forum: Pawn Scripting - Replies (2)

Code:
?mysql_format(ourConnection, query, sizeof(query), "UPDATE characters SET pAdmin = %i, pLastSkin = %i, pLevel = %i, pEXP = %i, pMoney = %i, pBank = %i, pPaycheck = %i, pPhone = %i, pLastOnline = '%e', pLastOnlineTime = %i, pAdminjailed = %i, pAdminjailTime = %i WHERE char_dbid = %i",

??PlayerInfo[playerid][pAdmin],

??PlayerInfo[playerid][pLastSkin],

??PlayerInfo[playerid][pLevel],

??PlayerInfo[playerid][pEXP],

??PlayerInfo[playerid][pMoney],

??PlayerInfo[playerid][pBank],

??PlayerInfo[playerid][pPaycheck],

??PlayerInfo[playerid][pPhone],

??ReturnDate(),

??PlayerInfo[playerid][pLastOnlineTime],

??PlayerInfo[playerid][pAdminjailed],

??PlayerInfo[playerid][pAdminjailTime],

??PlayerInfo[playerid][pDBID]);

?mysql_tquery(ourConnection, query);

?

?mysql_format(ourConnection, query, sizeof(query), "UPDATE characters SET pFaction = %i, pFactionRank = %i, pVehicleSpawned = %i, pVehicleSpawnedID = %i, pTimeplayed = %i, pMaskID = %i, pMaskIDEx = %i, pOfflinejailed = 0 WHERE char_dbid = %i",

??PlayerInfo[playerid][pFaction],

??PlayerInfo[playerid][pFactionRank],

??PlayerInfo[playerid][pVehicleSpawned],

??PlayerInfo[playerid][pVehicleSpawnedID],

??PlayerInfo[playerid][pTimeplayed],

??PlayerInfo[playerid][pMaskID][0],

??PlayerInfo[playerid][pMaskID][1],

??PlayerInfo[playerid][pDBID]);

?mysql_tquery(ourConnection, query);



And



Code:
mysql_format(ourConnection, query, sizeof(query), "UPDATE characters SET pAdmin = %i, pLastSkin = %i, pLevel = %i, pEXP = %i, pMoney = %i, pBank = %i, pPaycheck = %i, pPhone = %i, pLastOnline = '%e', pLastOnlineTime = %i, pAdminjailed = %i, pAdminjailTime = %i \

pFaction = %i, pFactionRank = %i, pVehicleSpawned = %i, pVehicleSpawnedID = %i, pTimeplayed = %i, pMaskID = %i, pMaskIDEx = %i, pOfflinejailed = 0 WHERE char_dbid = %i",

PlayerInfo[playerid][pAdmin],

PlayerInfo[playerid][pLastSkin],

PlayerInfo[playerid][pLevel],

PlayerInfo[playerid][pEXP],

PlayerInfo[playerid][pMoney],

PlayerInfo[playerid][pBank],

PlayerInfo[playerid][pPaycheck],

PlayerInfo[playerid][pPhone],

ReturnDate(),

PlayerInfo[playerid][pLastOnlineTime],

PlayerInfo[playerid][pAdminjailed],

PlayerInfo[playerid][pAdminjailTime],

PlayerInfo[playerid][pFaction],

PlayerInfo[playerid][pFactionRank],

PlayerInfo[playerid][pVehicleSpawned],

PlayerInfo[playerid][pVehicleSpawnedID],

PlayerInfo[playerid][pTimeplayed],

PlayerInfo[playerid][pMaskID][0],

PlayerInfo[playerid][pMaskID][1],

PlayerInfo[playerid][pDBID]);

mysql_tquery(ourConnection, query);



Which one should I do? And why?


Thumbs Up Me hechas una mano?
Posted by: Soy Od?n - 2019-09-13, 07:56 PM - Forum: Offtopic - Replies (1)

Hola gente de Youtube, estoy en busca?de ayuda... Perd? a?Loki.





Nuevamente, hola banda, tengo los siguientes problemas, no tengo la
m?nima idea de como crear una cuenta en phpmyadmin en primera, en segunda no se como solucionar el error que me tira al querer abrir pawno?pero eso no?me perjudica en abrirlo me preocupa si este error me perjudique es compilar porque no se un
?pingo, en tercera como puedo utilizar el costadito de pawno,?e visto que mucha gente le salen los comandos de los yoncpero ami no, se debe al error que mencione??Muchas gracias una continuaci?n de las...



Im?genes chiquitas:



https://ibb.co/3zxxzxv

https://ibb.co/YPwG5Hq

https://ibb.co/Q98jv7f



Cabe recalcar que no
s? la onu pingo de scriptear, de programar, de hacer weascu?nticaspero ac? estamos queriendo aprender, un?abrazo grande.


  [MAP] Interior Design
Posted by: Younggas - 2019-09-13, 04:03 AM - Forum: Videos and Screenshots - Replies (1)

Picture



[Image: Zy8nyv.png]



[Image: Zy88TE.png]



[Image: Zy8HlN.png]



[Image: Zy8VvV.png]



[Image: Zy8pqS.png]



[Image: Zy8v8n.png]



[Image: Zy8J7g.png]

[Image: Zy8LgW.png]


  [MAP] Spawn Point, San Fierro.
Posted by: pokerface - 2019-09-12, 03:47 PM - Forum: Videos and Screenshots - No Replies

[Image: okuvndn.jpg]

[Image: atHjMdl.jpg]

[Image: AxhHwuT.jpg]

[Image: TdSb77f.jpg]

[Image: MToUvEe.jpg]

[Image: rlztTUZ.jpg]


  [MAP] Sign of TSG in Grove Street.
Posted by: pokerface - 2019-09-12, 03:46 PM - Forum: Videos and Screenshots - No Replies

[Image: 0pnCvvE.jpg]


  Room Complex Interior Project
Posted by: Younggas - 2019-09-12, 07:05 AM - Forum: Videos and Screenshots - No Replies

[Image: Zmk3Az.png]

[Image: Zmk9L8.png]

[Image: ZmktkR.png]

[Image: ZmkwO0.png]

[Image: Zmk1Xu.png]


  House Interior Project
Posted by: Younggas - 2019-09-12, 07:04 AM - Forum: Videos and Screenshots - Replies (1)

[Image: ZmhXDk.png]

[Image: ZmhVwl.png]

[Image: ZmhaJv.png]

[Image: ZmhGEN.png]

[Image: ZmhJVV.png]

[Image: ZmheYQ.png]

[Image: ZmhmRS.png]