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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 7,234
» Latest member: welwlell3
» Forum threads: 2,373
» Forum posts: 12,327

Full Statistics

Online Users
There are currently 159 online users.
» 0 Member(s) | 156 Guest(s)
Bing, Google, Yandex

Latest Threads
Liberty City map
Forum: Pawn Scripting
Last Post: ziyadprogamer
2025-06-28, 04:55 PM
» Replies: 2
» Views: 2,131
GameText styles in open.m...
Forum: Pawn Scripting
Last Post: Miki
2025-06-28, 01:25 PM
» Replies: 1
» Views: 44
Very Basic SAMP UCP
Forum: Videos and Screenshots
Last Post: bullyalina
2025-06-28, 12:43 PM
» Replies: 49
» Views: 12,926
Script[gamemodes/gamemode...
Forum: Pawn Scripting
Last Post: Miki
2025-06-27, 05:08 PM
» Replies: 1
» Views: 425
Want to edit my profile n...
Forum: Chat
Last Post: Hera.
2025-06-26, 08:41 PM
» Replies: 1
» Views: 551
Farsi
Forum: Other
Last Post: acc.gangbeni
2025-06-25, 08:21 AM
» Replies: 2
» Views: 3,060
Las Venturas Gang Wars - ...
Forum: Advertisements
Last Post: lvgwgta
2025-06-22, 06:47 PM
» Replies: 0
» Views: 54
[Request] Linko Gaming Ro...
Forum: General Discussions
Last Post: JamesC
2025-06-20, 07:34 PM
» Replies: 0
» Views: 66
RevolutionX DM/Stunt/Race...
Forum: Advertisements
Last Post: DerekZ905
2025-06-18, 03:12 PM
» Replies: 0
» Views: 87
samp-cef
Forum: Questions and Suggestions
Last Post: jamespssamp
2025-06-18, 11:36 AM
» Replies: 0
» Views: 71

 
  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: Chat - 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.