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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 8,104
» Latest member: Eamon
» Forum threads: 2,441
» Forum posts: 12,461

Full Statistics

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

Latest Threads
Algemene Discussies
Forum: Dutch/Nederlands
Last Post: Eamon
10 hours ago
» Replies: 41
» Views: 85,240
Help me find a current ar...
Forum: Tech
Last Post: KOZYR
2026-04-24, 03:53 PM
» Replies: 0
» Views: 44
Czy SA:MP RP jeszcze żyje...
Forum: Ogólne
Last Post: Sztakier
2026-04-24, 09:11 AM
» Replies: 0
» Views: 49
Donald Trump wars every c...
Forum: Life
Last Post: NoxxeR
2026-04-23, 08:04 PM
» Replies: 0
» Views: 54
Ajuda com salvamento nao ...
Forum: Portuguese/Português
Last Post: zGu1Zin_
2026-04-22, 10:05 PM
» Replies: 0
» Views: 58
PawnPro 3.0 — Extensão VS...
Forum: Portuguese/Português
Last Post: NullSablex
2026-04-19, 10:58 AM
» Replies: 0
» Views: 77
Harmony Maps
Forum: Maps
Last Post: Harmony
2026-04-19, 09:36 AM
» Replies: 0
» Views: 99
SOLS Roleplay (2026)
Forum: Advertisements
Last Post: TyDolla
2026-04-18, 04:47 PM
» Replies: 0
» Views: 122
SOLS Roleplay (Official T...
Forum: Videos and Screenshots
Last Post: TyDolla
2026-04-18, 04:45 PM
» Replies: 0
» Views: 81
SAMPHUB.
Forum: Spanish/Español
Last Post: picxii
2026-04-16, 02:14 PM
» Replies: 19
» Views: 41,492

 
  Printing
Posted by: Fr0z3n - 2021-06-15, 06:08 PM - Forum: Pawn Scripting - Replies (4)

Hello, is it possible to print something in colors?



It would be so cool :)


  static const help
Posted by: Zow - 2021-06-15, 03:15 PM - Forum: Pawn Scripting - Replies (3)

https://fiddle.sa-mp.dev/CeramicDecisiveKronosaurus



Is it good to use?


  Map editor
Posted by: TheFlash - 2021-06-13, 05:47 AM - Forum: Support - No Replies

Hi there

I was trying to install ingame map editor plenty of times without any success may someone help me installing the ingame version? ill be so thankful for him


  Car Respawn
Posted by: dondo - 2021-06-12, 01:07 PM - Forum: Pawn Scripting - Replies (1)

Heyo,



qick question:?does anyone know how i can destroy a car after it explode??So that it wont respawn. ??



greetz,

dondo!


  Open.mp webpage unreachable?
Posted by: Lukas - 2021-06-10, 11:45 AM - Forum: Questions and Suggestions - Replies (1)

Hi, was it taken down? i can't enter it


  discord bot
Posted by: gzsamp - 2021-06-09, 07:52 PM - Forum: General Discussions - Replies (1)

some base or api to create a discord bot? that does not need connection to the gamemode, a dynamic configuration bot


  [Solved] Send a message on multiple lines [text length more than 144]
Posted by: Radical - 2021-06-08, 01:05 PM - Forum: Pawn Scripting - Replies (1)

I'm looking for that function, if the text length is more than 144 letters, Send it in two messages.

Thanks



SOLUTION:



(2021-06-09, 08:48 AM)Pinch Wrote: https://www.burgershot.gg/showthread.php?tid=748





I maked this function but it does not work as I wanted.?

This separates the word between strings 144



burgershot >>



burg ..

.. ershot



Code:
SendClientMessageToAllEx(color, const text[]) {



? ? new

? ? ? ? message[144];

? ?

? ? strcat(message, text);



? ? new

? ? ? ? lentgh = strlen(message);



? ? if (lentgh >= 143) {



? ? ? ? new

? ? ? ? ? ? message_2[144];



? ? ? ? format(message_2, sizeof message_2, ".. %s", message[139]);



? ? ? ? strdel(message, 139, lentgh);

? ? ? ? strcat(message, " ..");



? ? ? ? SendClientMessageToAll(color, message);



? ? ? ? SendClientMessageToAll(color, message_2);



? ? } else

? ? ? ? SendClientMessageToAll(color, message);



? ? return 1;

}


  Interior furniture in Burglary houses bug?
Posted by: JR_Junior - 2021-06-07, 06:06 PM - Forum: Questions and Suggestions - No Replies

I've been visiting the interiors of burglary houses and most of their furniture doesn't show up sometimes.?



Sometimes they appear, other times they don't and there's a gray warning message in the chat: Warning(s007): Exception 0xC0000005 at 0x593C6F.



Would this be a game bug or just samp? I'm using version 0.3DL.





[Image: Screenshot-41.png]



[Image: Screenshot-39.png]



[Image: Screenshot-40.png]


  [SUGGESTION] IPv6 support?
Posted by: Jyottabyte - 2021-06-06, 10:39 AM - Forum: General Discussions - Replies (1)

I tried to add a random IPv6 address to 0.3.7?SA-MP client but it does not recognize the IP because ":" is detected as the port symbol, which is not the case in IPv6 addresses. I did not try with a hostname, but looks like IPv6 support isn't baked in.



Suggestion to consider adding IPv6 support to Open MP client.


  In-Game teleport creation tool
Posted by: BrycieBoi - 2021-06-06, 10:17 AM - Forum: Releases - No Replies

Hi, new member here.



Wrote a simple in-game teleport creation tool. Currently /savetele is not limited to admins, but this can be added easily.



How to use:

/savetele <name> : Saves a teleport location to scriptfiles/Custom Teles.

/teles : Displays a list dialog of all saved teleports. Selecting one will teleport the player to it's location (with vehicle if applicable).

/tele <name> : Teleports player to saved teleport with <name> (shortcut version of '/teles').



Dependencies:

Dini

zcmd

sscanf2



Installation:

1) Compile CustomTeleports.pwn and add CustomTeleports to filterscripts in server.cfg

2) Create a directory named 'Custom Teles' inside the scriptfiles directory



Download



Feel free to make any changes you like.