Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 7,622
» Latest member: Bilal
» Forum threads: 2,340
» Forum posts: 12,278
Full Statistics
|
Online Users |
There are currently 332 online users. » 1 Member(s) | 329 Guest(s) Bing, Google
|
Latest Threads |
Anyone got old rp scripts...
Forum: General Discussions
Last Post: Bilal
Yesterday, 01:02 PM
» Replies: 5
» Views: 5,115
|
Anyone has the SARP Gamem...
Forum: Gamemodes
Last Post: Bilal
Yesterday, 12:59 PM
» Replies: 0
» Views: 28
|
SARP Gamemode
Forum: Releases
Last Post: Bilal
Yesterday, 12:58 PM
» Replies: 0
» Views: 24
|
Need To Hire Pawno Coder....
Forum: General Discussions
Last Post: Dilshad
Yesterday, 06:20 AM
» Replies: 1
» Views: 773
|
Original Godfather
Forum: Pawn Scripting
Last Post: NmE
2025-10-20, 11:48 AM
» Replies: 3
» Views: 150
|
What would you start?
Forum: Life
Last Post: vuongtrungnu13
2025-10-20, 01:55 AM
» Replies: 4
» Views: 9,792
|
People who have one of th...
Forum: Tech
Last Post: vuongtrungnu13
2025-10-20, 01:39 AM
» Replies: 2
» Views: 5,148
|
After School Community
Forum: Advertisements
Last Post: cosminupgaming
2025-10-19, 12:42 PM
» Replies: 0
» Views: 73
|
[SDK] SDK C++ MODERNO
Forum: Portuguese/Portugu?s
Last Post: Crazy_ArKzX
2025-10-19, 02:18 AM
» Replies: 0
» Views: 35
|
[SDK] SDK C++ MODERN
Forum: Tech
Last Post: Crazy_ArKzX
2025-10-19, 02:17 AM
» Replies: 0
» Views: 40
|
|
|
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.
|
|
|
'inject' Modes to gta_sa/SA-MP?? |
Posted by: redex - 2021-06-06, 06:26 AM - Forum: Programming
- Replies (2)
|
 |
hi, i am working on a custom SA-MP launcher for my server, its an anti cheat now i want to do something more, i want to add some modes and stuff, like skins or other modes, now i want to it only load when user is opening gta_sa with my launcher, so i dont want to just put some stuff in game folder , how can i do something like injecting that files ? for example i just downloaded a mode that have 2 files , tff and dff (if i got that right) how can i inject this model files to game? or another example i just downloaded a radar mode, it said i should replace the IMG files to gta3.img , how can i do that ONLY when user opening game with launcher?
i seen this thing in other servers so i guess its possible, by the way i used C# for the launcher
|
|
|
|