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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 7,053
» Latest member: ryanthiago789
» Forum threads: 2,354
» Forum posts: 12,244

Full Statistics

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

Latest Threads
CODE5 GAMING COPS AND ROB...
Forum: Advertisements
Last Post: ryanthiago789
Today, 03:02 AM
» Replies: 0
» Views: 25
SAMP RP project in 2024? ...
Forum: General Discussions
Last Post: tommchris
Today, 02:05 AM
» Replies: 4
» Views: 2,460
Infekcja 2: Zombie Surviv...
Forum: Serwery
Last Post: tunnelrushgame3d
Today, 01:50 AM
» Replies: 1
» Views: 184
FPS issues
Forum: General Discussions
Last Post: kourtneyroberts
Yesterday, 04:53 AM
» Replies: 0
» Views: 17
How to make your GTA SA:M...
Forum: Tutorials
Last Post: NoxxeR
2025-04-27, 11:26 AM
» Replies: 1
» Views: 73
Problem about pawnbot
Forum: Pawn Scripting
Last Post: balkanspeed18
2025-04-26, 02:04 PM
» Replies: 0
» Views: 37
Error
Forum: Pawn Scripting
Last Post: -N0FeaR-
2025-04-25, 12:05 PM
» Replies: 0
» Views: 37
GTA Multigames [ MultiMod...
Forum: Advertisements
Last Post: Undead
2025-04-25, 07:37 AM
» Replies: 0
» Views: 50
Atlanta DeathMatch
Forum: Advertisements
Last Post: NixaSha
2025-04-25, 01:19 AM
» Replies: 0
» Views: 39
will open.mp supports hig...
Forum: Questions and Suggestions
Last Post: NoxxeR
2025-04-23, 07:10 PM
» Replies: 2
» Views: 436

 
  discord-connector, how to send private messages?
Posted by: ???????? - 2021-04-09, 02:15 PM - Forum: Pawn Scripting - Replies (1)

Hello! I need some help over here with this exiting plugin. I can't get how to send private messages to player from game?

Private messages, not public in channels. If someone got through this hell before me - I ask you to help me to cross this damn river..



https://github.com/maddinat0r/samp-discord-connector


  SHA256 SALT in PHP?
Posted by: CoPete? - 2021-04-08, 08:59 PM - Forum: Programming - Replies (1)

Hi!?please I would like you to help me authenticate the users on the web page, the problem I have is that I use in the gamemode the password settlement system sha256 a salt that I got in forum samp (maybe they know which)?and I don't know how I could do an autiticator?in php, thanks



[Image: TtrFlqW.png]


  Help
Posted by: Nightmare - 2021-04-08, 04:45 PM - Forum: Pawn Scripting - Replies (2)

hello i'm new in pawn scripting, i'm compiling a filterscript, and appears this error: "undefined symbol 'AddSimpleModel'". I searched how solve it but i don't found solutions. Can someone help?





img link:

https://prnt.sc/117hc5z


  Dialog selection doesn't work.
Posted by: Axitz - 2021-04-08, 03:57 PM - Forum: Pawn Scripting - Replies (1)

Hi sorry for keep creating thread.



I'm not really familiar with dialog system, therefore I tried creating it in dialog version but it doesn't work like what I wanted it to be.

I clicked one of the vehicle but it select everything and unimpound everything I owned plus the faction vehicles.



I have to upload it on pastebin due to thread messed up the code.





https://pastebin.com/raw/BG9f6WQn


  TDEditor 1.17 Bug Box Right Alignment
Posted by: Jhames - 2021-04-08, 02:55 PM - Forum: Pawn Scripting - Replies (2)

Hi guys.



I have a problem in TDEditor 1.17 when I activate the right alignment the box of my text is infinite to the left side and I can't go back, this only happens with the right alignment.




[Image: FqnY0Mp.png]


  [fixed] Entering last checkpoints doesn't give me anything.
Posted by: Axitz - 2021-04-08, 01:31 PM - Forum: Pawn Scripting - No Replies

nvm fixed.


  A correctly installed Filterscript (driverfs) does not work.
Posted by: Boxi - 2021-04-07, 06:33 PM - Forum: Pawn Scripting - Replies (2)

Hi it's me again :C (I think I'll get banned from this forum if I keep posting so often :P)



Anyway, I need your help to install this FilterScript?https://github.com/Naseband/SAMP-Driver-FS??I downloaded and installed all the libraries it requires, I compiled it without problems, but when I install it on the server and try to use a command I get the message "Unknown command" when the command I use is defined, basically it's as if the FS does not start.





Someone already tried to install this FS or know how to solve this problem? I would appreciate your help. Greetings to all!


  Not sending an error message
Posted by: Axitz - 2021-04-07, 02:32 PM - Forum: Pawn Scripting - Replies (5)

I have this problem when I use the other method, it does work but if I change it the way I wanted, it doesn't. Please help.?

This one does work.

PHP Code:
if(Vehicles[vehicleid][impounded] == 1) return SendClientMSG(playeridCOLOR_RED"{ff6347}Error: Unable to spawn because it is impounded."); 

This one doesn't work. No Idea why.
PHP Code:
if(Vehicles[vehicleid][impounded] == 1) return SendClientMSG(playeridCOLOR_RED"{ff6347}Error: Unable to spawn %s (ID: %d) because it is impounded.",GetVehicleName(Vehicles[vehicleid][vrID]), vehicleid); 


  What is ColAndreas for?
Posted by: Boxi - 2021-04-07, 01:39 PM - Forum: Pawn Scripting - Replies (3)

I've seen it, on several sites. But I don't know what it is or what it's for, its description on GitHub doesn't tell me much. Does anyone know? thanks!


  [SOLVED] kick a player when the client different version connects
Posted by: PutuSuhartawan - 2021-04-07, 05:31 AM - Forum: Pawn Scripting - Replies (1)

public OnPlayerConnect(playerid)

{

? ? new

? ? ? ? string[24];

? ? GetPlayerVersion(playerid, string, sizeof(string));

? ? format(string, sizeof(string), "Your version of SA-MP: %s", string);

? ? SendClientMessage(playerid, 0xFFFFFFFF, string);

? ? // possible text: "Your version of SA-MP: 0.3.7"

? ? return 1;

}






what next?