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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 7,723
» Latest member: JASoon
» Forum threads: 2,361
» Forum posts: 12,311

Full Statistics

Online Users
There are currently 295 online users.
» 0 Member(s) | 292 Guest(s)
Google, Bing, Baidu

Latest Threads
GTA SA-MP Scripting: Issu...
Forum: General Discussions
Last Post: JASoon
49 minutes ago
» Replies: 1
» Views: 127
Can small insights really...
Forum: Questions and Suggestions
Last Post: nertykolas140
11 hours ago
» Replies: 1
» Views: 22
Vice WRLD Freeroam/RP
Forum: Advertisements
Last Post: pdjumailiev
2025-11-24, 11:30 AM
» Replies: 0
» Views: 43
Wanting to Start a RP Ser...
Forum: Chat
Last Post: Wein
2025-11-24, 09:07 AM
» Replies: 1
» Views: 177
Help me for creating a fr...
Forum: General Discussions
Last Post: [Rs]VeNoM
2025-11-23, 07:33 AM
» Replies: 0
» Views: 23
The server didn't respond...
Forum: Support
Last Post: richboY
2025-11-22, 10:51 AM
» Replies: 0
» Views: 35
error when joining server
Forum: Support
Last Post: sanved2008
2025-11-22, 09:02 AM
» Replies: 0
» Views: 37
Client issue with object
Forum: Support
Last Post: TheDoctor
2025-11-15, 08:00 PM
» Replies: 0
» Views: 98
San Andreas Police Pursui...
Forum: Advertisements
Last Post: BriBri
2025-11-15, 12:06 AM
» Replies: 0
» Views: 121
[Include] OpenGate (Abrir...
Forum: Portuguese/Portugu?s
Last Post: Crazy_ArKzX
2025-11-13, 06:49 PM
» Replies: 0
» Views: 93

 
  [PREFAB] Traffic signs
Posted by: Muksinjo - 2021-02-19, 10:40 PM - Forum: Videos and Screenshots - No Replies

Hello, i made traffic signs prefab, hope you like it :D

I will update the collection for sure :D



https://imgur.com/a/VI9fJW4


  [WIP] Fort Carson Project - Green Oasis
Posted by: Polter - 2021-02-19, 10:37 PM - Forum: Videos and Screenshots - Replies (4)

[Image: cOIb1bv.png]

Hello guys. Today i want to show you my little project that im working for the last week or so. Its all about remaping Fort Carson in green oasis in middle of desert. Its not made for any community nor server, its just my project that im working on as a hobby. Tell me what do you think?!

THIS IS STILL WORK IN PROGRESS!

[Image: HFr1wg8.png]

[Image: 1.png]

[Image: 2.png]

[Image: 3.png]

[Image: 4.png]

[Image: 5.png]

[Image: 6.png]

[Image: 7.png]

[Image: 8.png]

[Image: 9.png]

[Image: casdhJm.png]

[Image: 10.png]

[Image: 11.png]

[Image: 12.png]

[Image: 13.png]

[Image: SD.png]

[Image: 14.png]

[Image: 15.png]

[Image: 16.png]

[Image: 17.png]

[Image: RAC.png]

[Image: 18.png]

[Image: 19.png]

[Image: 20.png]

[Image: 21.png]


  Someone can help me with this?
Posted by: Nicolas_Belic - 2021-02-19, 10:21 PM - Forum: Pawn Scripting - Replies (1)

PHP Code:
new B_Privados[MAX_PLAYERS];

CMD:togmp(playeridparams[]) {

? ? if (!
B_Privados[playerid]) {

? ? ? ? 
B_Privados[playerid] = 1;

? ? ? ? 
SendClientMessage(playerid2"MP OFF");

? ? } else if (
B_Privados[playerid]) {

? ? ? ? 
B_Privados[playerid] = 0;

? ? ? ? 
SendClientMessage(playerid2"MP ON");

? ? }

? ? return 
1;







[color=#333333][size=small][font=Tahoma, Verdana, Arial, sans-serif]
PHP Code:
[/font][/size][/color]CMD:mp(playeridparams[])

{

? ? new 
PmPlayerMessage[124], String[124], PlayerName[MAX_PLAYER_NAME], PlayerName2[MAX_PLAYER_NAME], PmSent[50];

? ? if (
B_Privados[playerid] == 1) return SendClientMessage(playerid0"You blocked the /mp");

? ? if (
sscanf(params"us[140]"PmPlayerMessage)) return SendClientMessage(playerid0xFFFFFFFF"{D41818}[COMMAND]{AFAFAF} /mp <id> <text>");

? ? if (!
IsPlayerConnected(PmPlayer)) return SendClientMessage(playerid0xFF0000FF"{D41818}[ERROR]{AFAFAF} The player he's not connected");

? ? else{

? ? ? ? 
GetPlayerName(playeridPlayerNamesizeof(PlayerName));

? ? ? ? 
GetPlayerName(PmPlayerPlayerName2sizeof(PlayerName2));

? ? ? ? if (
B_Privados[PmPlayer[0]] == 1) return SendClientMessage(playerid0"This player has blocked the /mp");

? ? ? ? 
format(PmSentsizeof(PmSent), "MP sended to %s"PlayerName2);

? ? ? ? 
SendClientMessage(playerid0xfce80cffPmSent);

? ? ? ? 
format(Stringsizeof(String), "[MP - ID:%d] %s: %s",playerid,PlayerNameMessage);

? ? ? ? 
SendClientMessage(PmPlayer0xfdfe8bffString);

? ? ? ? 
printf("%s to %s, %s"PlayerNamePlayerName2Message);

? ? }

? ? return 
1;


?y try to make a togmp (Private Message) system but i can't,??when the player sends me a private message I receive it when my / mp is disabled


  How i can add this to my command?
Posted by: Nicolas_Belic - 2021-02-19, 02:49 PM - Forum: Pawn Scripting - Replies (1)

How can I make sure that only the players who are in my virtual world can read the message that I send, and that those who are not in my virtual world do not read the message?



Code:
CMD:gl(playerid, params[])

{

? ? new Text[132], string[128], PlayerName[MAX_PLAYER_NAME];



? ? if(sscanf(params, "s[132]", Text))

? ? {

? ? ? ? SendClientMessage(playerid, -1, "{D41818}[COMANDO]{AFAFAF} /gl <texto>");

? ? }

? ? else

? ? {

? ? ? ? GetPlayerName(playerid, PlayerName, sizeof(PlayerName)); // storing player name first in the PlayerName variable



? ? ? ? format(string, sizeof(string), "[ID:%d - %s]: %s",playerid, PlayerName, Text); //[ID:12 - Sebasti?n Price] texto

? ? ? ? SendClientMessageToAll(0xFFFFFF00, string);

? ? }



? ? return 1;

}


  [HELP] NPC anim
Posted by: spyrothedragon96 - 2021-02-19, 02:29 PM - Forum: Pawn Scripting - No Replies

Hi everyone, I have a little problem with NPCs.
I have created a fs animations for NPCs?to run via a command: /animname <npcname>
The problem is this: if there are two NPCs called NPC1 and NPC11 in game, when I assign an animation to NPC11 by typing for example /roadcross npc11, the animation is performed on NPC1.
It is as if the command captured NPC1 first.
Same thing happens, for example, if there are NPC2 and NPC21 ... The command is first captured by NPC2
Instead, if I delete NPC1 and now run the command on NPC11 it works.
Maybe there is a need to set the script so that you have to type the full name?
Do you know how I can solve?
This is the example of the script:

PHP Code:
CMD:npc_roadcross(playeridparams[])
{
new 
targetid;
if(
sscanf(params"u"targetid)) return SendClientMessage(playerid, -1"Use: /npc_anim <playerid/npc>");
? ? if(!
IsPlayerConnected(targetid)) return SendClientMessage(playerid, -1"Invalid Player id.");
? ? 
ApplyAnimation(targetid"PED","roadcross",4.0,0,0,0,0,-1);
? ? return 
1;


  How to enter a crane in SA-MP?
Posted by: jdefgh - 2021-02-19, 01:19 PM - Forum: Pawn Scripting - Replies (1)

How do enter or put a player in the Import/Export crane? I wanted to make a filterscript for Exports and Imports, but i have no idea how to enter it.

Because normally, there was a red spot where you could enter the crane, but i can't find a way to replicate it.

The crane is not a vehicle, so i can't just get its id and put the player in it. There should be a way to enter it.



Do i have to reinvent the wheel, or there's a way to put player in a crane?


  Rank Teams | TDM
Posted by: Hitler - 2021-02-18, 08:00 PM - Forum: Pawn Scripting - Replies (1)

Espa?ol: ?Alguien sabe como hacer un rankings de teams?, me explico, una funcion para juntar los scores de los jugadores del team, uso MySQL



English:?Does anyone know how to make a team ranking? Let me explain, a function to gather the scores of the team players, I use MySQL


  How i can add this to my command?
Posted by: Nicolas_Belic - 2021-02-18, 10:34 AM - Forum: Pawn Scripting - Replies (1)

Hi, how can I make it so that only I can teleport to people who are in the same virtual world and cannot if the virtual world is different?





Code:
CMD:goto(playerid, params[]) {

? ?

? ? ? ? if (!sscanf(params, "d", params[0])) {

? ? ? ? ? ? if (IsPlayerConnected(params[0])) {

? ? ? ? ? ? ? ? if(GetPlayerVirtualWorld(params[0]) == GetPlayerVirtualWorld (playerid)) else SendClientMessage(playerid, -1, "Nope");

? ? ? ? ? ? ? ? new Float: p_x,Float: p_y,Float: p_z;

? ? ? ? ? ? ? ? GetPlayerPos(params[0], p_x, p_y, p_z);

? ? ? ? ? ? ? ? new interior = GetPlayerInterior(params[0]);

? ? ? ? ? ? ? ? new vw = GetPlayerVirtualWorld(params[0]);

? ? ? ? ? ? ? ? SetPlayerPos(playerid, p_x, p_y, p_z);

? ? ? ? ? ? ? ? SetPlayerInterior(playerid, interior);

? ? ? ? ? ? ? ? SetPlayerVirtualWorld(playerid, vw);

? ? ? ? ? ? ? ? return SendClientMessage(playerid, -1, "Teleported.");

? ? ? ? ? ? } else SendClientMessage(playerid, -1, "Player not found.");

? ? ? ? } else SendClientMessage(playerid, -1, "/goto [playerid]");

? ? ? ? return 1;

}







Correct me please


  Road map
Posted by: Muksinjo - 2021-02-17, 04:07 PM - Forum: Videos and Screenshots - Replies (2)

Hello, this is my new map, hope you like it :D?



https://imgur.com/a/wjua3Ks


  multi-thread ORM mysql samp
Posted by: Paulthas01 - 2021-02-17, 12:18 AM - Forum: Questions and Suggestions - No Replies

As fun??es ORM do mysql s?o multiencadeadas?