Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 7,499
» Latest member: amin1stp
» Forum threads: 2,413
» Forum posts: 12,360
Full Statistics
|
Online Users |
There are currently 454 online users. » 1 Member(s) | 448 Guest(s) Bing, Applebot, Twitter, Dr0pp
|
Latest Threads |
San Fierro Cops And Robbe...
Forum: Advertisements
Last Post: Dr0pp
49 minutes ago
» Replies: 0
» Views: 7
|
Adding new vehicles and s...
Forum: Programming
Last Post: __.A.__
Yesterday, 07:47 PM
» Replies: 0
» Views: 54
|
Zona América del Sur Free...
Forum: Advertisements
Last Post: kevinberriosflores
Yesterday, 02:16 PM
» Replies: 1
» Views: 77
|
Busco copia de gamemode S...
Forum: Spanish/Espa?ol
Last Post: briancristaldo2021
2025-09-11, 11:14 AM
» Replies: 0
» Views: 61
|
[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: 296
|
Problem with plugins load...
Forum: Support
Last Post: MrKacu13
2025-09-08, 07:15 PM
» Replies: 9
» Views: 371
|
Compilation error
Forum: Pawn Scripting
Last Post: MrKacu13
2025-09-07, 07:18 AM
» Replies: 6
» Views: 357
|
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: 239
|
|
|
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!
|
|
|
[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;
}
|
|
|
[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.
|
|
|
|