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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 7,019
» Latest member: bosquee9053
» Forum threads: 2,349
» Forum posts: 12,234

Full Statistics

Online Users
There are currently 254 online users.
» 0 Member(s) | 252 Guest(s)
Google, Bing

Latest Threads
Kontak Layanan CIMB Niaga...
Forum: Support
Last Post: bosquee9053
3 hours ago
» Replies: 0
» Views: 4
CS Bank DBS Customer Cent...
Forum: Chat
Last Post: bosquee9053
4 hours ago
» Replies: 0
» Views: 6
Sponsors and Donations
Forum: Questions and Suggestions
Last Post: NoxxeR
Today, 05:48 AM
» Replies: 0
» Views: 24
I know Kalcor left the bu...
Forum: Questions and Suggestions
Last Post: NoxxeR
Today, 05:40 AM
» Replies: 2
» Views: 65
Best practices for conver...
Forum: Tech
Last Post: Mido
Yesterday, 09:53 PM
» Replies: 1
» Views: 75
A simple suggestion as a ...
Forum: Questions and Suggestions
Last Post: Mido
Yesterday, 09:47 PM
» Replies: 1
» Views: 36
Steps to unlock Apple ID ...
Forum: Tech
Last Post: fubolink
2025-04-17, 03:50 PM
» Replies: 0
» Views: 38
What got you into SA-MP a...
Forum: Chat
Last Post: alecnia
2025-04-17, 01:17 AM
» Replies: 1
» Views: 145
I would like to know abou...
Forum: General Discussions
Last Post: Wriney
2025-04-15, 07:14 AM
» Replies: 0
» Views: 62
Mini Games
Forum: Advertisements
Last Post: Voldy
2025-04-15, 03:59 AM
» Replies: 9
» Views: 1,873

 
  [Announce]SSGamers
Posted by: weslley_script - 2023-09-17, 09:28 PM - Forum: Advertisements - Replies (1)

As I don't know if this place is a place for advertisements derived from PT-BR SA-MP, I am inserting the information in English
SSGamers is a community where there is a wide range of members, we don't have 1/10 of what is on the open MP Discord, but I would appreciate it if you would allow me to leave the ad here so that you can help me with my growth.

Our Discord aims to cover various games to advertise servers and assist members in the programming field.

Everyone is welcome to our SSGamers community.


Sad INCLUDE PROBLEM
Posted by: alexandrogallegos09 - 2023-09-15, 08:29 AM - Forum: Pawn Scripting - Replies (6)

I have a problem with this Include, my text its not showin up but instead the textdraw:

include:
[Image: Uw9eO37.png]

my game:
[Image: fMFRUH0.png]

my cmd:

Code:
CMD:black1(playerid, params[])
{
    notification.Show(playerid, "Testing", "Testing blablabalablablablbasdgfsfsf\nsqhgfsqfqsfqsf", "hud:radar_triads");
    notification.Show(playerid, string:"Rules", string:"1st: Go fuck your self\n2nd: :despondency\n 3rd: blablablablabla", string:"hud:radar_triads");
    return 1;
}

my includes:
Code:
#include <a_samp>
#include <a_mysql>
#include <streamer>
#include <sscanf2>
#define YSI_NO_HEAP_MALLOC
#define TDN_MODE_DEFAULT
#include <notify>
#include <zcmd>

If anyone can help me i would be so thankful, sorry my bad english.

Original .inc link


Sad i have problem with easyDialog or mysql r41-4
Posted by: lifehd326 - 2023-09-14, 02:22 PM - Forum: Pawn Scripting - Replies (1)

Dovada: https://www.youtube.com/watch?v=JI6VpCtqK2w

public OnGameModeExit()
{
mysql_close(SQL);
return 1;
}

public OnPlayerRequestClass(playerid)
{
return 1;
}
public OnPlayerConnect(playerid)
{
qQuery[0] = (EOS);
mysql_format(SQL, qQuery, sizeof(qQuery), "SELECT * FROM `users` WHERE `Name` = '%e' LIMIT 1", GetPlayerNameEx(playerid));
mysql_pquery(SQL, qQuery, "CheckPlayerAccount", "d", playerid);
PlayerInfo[playerid][pLoginTires] = 0;
return 1;
}

function CheckPlayerAccount(playerid) {

qString[0] = (EOS);
switch(cache_num_rows())
{
case 0:
{
format(qString, sizeof(qString), "Bine ai venit, %s.\nScrie o parola pentru a te inregistra:", GetPlayerNameEx(playerid));
Dialog_Show(playerid, DILOAG_REGISTER, DIALOG_STYLE_PASSWORD, "Register", qString, "Register", "Quit");
}
case 1:
{
format(qString, sizeof(qString), "Bine ai revenit, %s.\nScrie mai jos parola contului tau:", GetPlayerNameEx(playerid));
Dialog_Show(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD, "Login", qString, "Login", "Quit");
}
}
return 1;
}

Dialog:DIALOG_REGISTER(playerid, response, listitem, inputtext[]) {

if(!response)
return Kick(playerid);

if(strlen(inputtext) < 8 || strlen(inputtext) > 32)
return Dialog_Show(playerid, DILOAG_REGISTER, DIALOG_STYLE_PASSWORD, "Register", "Scrie o parola pentru a te inregistra:\nNumarul de caractere trebuie sa fie format din 8 - 64", "Register", "Quit");


format(PlayerInfo[playerid][pName], 24, GetPlayerNameEx(playerid));
format(PlayerInfo[playerid][pPassword], 128, inputtext);

qQuery[0] = (EOS);
mysql_format(SQL, qQuery, sizeof(qQuery), "INSERT INTO `users` (Name, Password) VALUES ('%e', '%e')", GetPlayerNameEx(playerid), inputtext);
mysql_pquery(SQL, qQuery, "CheckSQLID", "d", playerid);

Dialog_Show(playerid, DIALOG_EMAIL, DIALOG_STYLE_INPUT, "E-Mail", "Scrie mai jos adresa ta de e-mail:", "Ok", "");


return 1;
}

Dialog:DIALOG_EMAIL(playerid, response, listitem, inputtext[])
{

if(!response)
return Dialog_Show(playerid, DIALOG_EMAIL, DIALOG_STYLE_INPUT, "E-Mail", "Scrie mai jos adresa ta de e-mail:", "Ok", "");

if(strlen(inputtext) < 8 || strlen(inputtext) > 128 || !IsValidEmailAddress(inputtext))
return Dialog_Show(playerid, DIALOG_EMAIL, DIALOG_STYLE_INPUT, "E-Mail", "Scrie mai jos adresa ta de e-mail:\nAdresa de e-mail nu este valida.", "Ok", "");

qQuery[0] = (EOS);
mysql_format(SQL, qQuery, sizeof(qQuery), "UPDATE `users` SET `Email` = `%e` WHERE `ID` = `%d`", PlayerInfo[playerid][pEmail], PlayerInfo[playerid][pSQLID]);
mysql_tquery(SQL, qQuery, "", "");

return 1;
}
Dialog:DIALOG_LOGIN(playerid, response, listitem, inputtext[]) {

if(!response)
return Kick(playerid);

qQuery[0] = (EOS);
mysql_format(SQL, qQuery, sizeof(qQuery), "SELECT * FROM `users` WHERE `Name` = `%e` AND `Password` = `%e` LIMIT 1", GetPlayerNameEx(playerid), inputtext);
mysql_pquery(SQL, qQuery, "OnPlayerLogin", "d", playerid);
return 1;
}
function OnPlayerLogin(playerid) {

switch(cache_num_rows())
{
case 0:
{

PlayerInfo[playerid][pLoginTires] ++;
if(PlayerInfo[playerid][pLoginTires] == 3) return Kick(playerid);

}
case 1:
{

cache_get_value_name_int(0, "pSQLID", PlayerInfo[playerid][pSQLID]);
cache_get_value_name_int(0, "Name", PlayerInfo[playerid][pName]);
cache_get_value_name_int(0, "Password", PlayerInfo[playerid][pPassword]);
cache_get_value_name_int(0, "Email", PlayerInfo[playerid][pEmail]);

}
}

return 1;
}

function CheckSQLID(playerid) {

PlayerInfo[playerid][pSQLID] = cache_insert_id();
printf("New account: %s.", GetPlayerNameEx(playerid));
return 1;
}


Question Worth it?
Posted by: Artysh - 2023-09-08, 03:45 PM - Forum: General Discussions - Replies (2)

Hello everyone,

A quick intro - I've been around the community since 2009, playing and developing. Maybe some of you would know me as CLT or Cesar Lauren Tom...
I came around this open.mp project and was intrigued, I see there's some activity and 29k players daily, most of them are ofc playing on the russian servers. 

So my question is - is it worth starting a roleplay server nowdays? I've a gm lying on my GitHub for years and it's ready to run.

When talking about is it worth it or not, I don't mean money aspects. Just if there's a chance to still build a stable community that keeps enjoying the game. 

Looking forward to your answers...

BR,
Arty


  [help] crashdetect
Posted by: Boris. - 2023-09-07, 12:22 PM - Forum: Pawn Scripting - Replies (1)

Hi, I had a bunch of timeouts that day, suddenly 30 players had timeouts, one after the other. However, I have nothing in the server_log? This error was thrown 5-6 hours before the players had a timeout. I wonder why it doesn't show the exact error, and which line in the script causes it?

Code:
[2023-09-03 12:41:38] [debug] Run time error 5: "Invalid memory access" 
[2023-09-03 12:41:38] [debug] AMX backtrace: 
[2023-09-03 12:41:38] [debug] #0 0002a65c in public OnPlayerCommandText (3, 26756692) from dd.amx 
[2023-09-03 12:41:38] [debug] #1 00022c94 in public OnPlayerText (3, 26756692) from dd.amx


  Anyone got old rp scripts for samp? P:LA, SA:RP?
Posted by: COLT45 - 2023-09-05, 06:46 PM - Forum: Chat - Replies (4)

So, like the title says im willing to buy samp rp script.

Offer me!

Looking for these atleast: P:LA, SA:RP


  Unknown game type
Posted by: mike.torrenoze - 2023-09-01, 10:14 AM - Forum: Support - Replies (1)

Hi
I Recently changed my gamemode and it's working normal
But the game mode type is showing unknwon in my host
Please help


Lightbulb Roleplay Base
Posted by: MrHind - 2023-08-29, 09:37 PM - Forum: Gamemodes - Replies (3)

I developed this gamemode with the sole intention of sharing it with people who want to start a project in SA-MP, as well as learn modular programming. The gamemode contains basic role-playing systems, it is made for Junior developers who want to learn and create their own server.

.- About systems:
- [•] Registration and Login to the Server.
- [•] System of death and respawn in the Hospital.
- [•] Role Certification.
- [•] Basic role commands. `(me, do, yell, blit, whisper, try)`
- [•] Accent Command. `(I decide not to save from Mysql)`
- [•] Command heal health.
- [•] System 'Role avoidance'. `(After you die and log out, the server will send you a message saying you bypassed a role, clearly they should develop the system on their own)`
- [•] Life reduction in case of death. `(After having an accident, your life will be reduced until you die again and appear in the hospital)`
- [•] Message log through Server > Discord.

Github - Option 1 or Github - Option 2


  Don't Destroy the weapon when ammo is 0
Posted by: naufalikbal00783 - 2023-08-29, 04:44 AM - Forum: Pawn Scripting - Replies (1)

Its possible to make that?.. when somebody dont have more ammo, the weapon dont dissapear?


  [1994] SA Advanced Role-Play (First Person) | Oldest and most realistic SAMP RP
Posted by: rt-2 - 2023-08-26, 01:43 PM - Forum: Advertisements - No Replies

[1994] SA Advanced Role-Play (First Person) | Oldest and most realistic SAMP RP


[Image: header_trans.png]




San Andreas Advanced Role-Play is a game mode dedicated to realism and real life physical limits.
The server is played in First Person only (server-side script).

* If you prefer using the First Person Mod you will have a slightly better experience, but it is not needed.



Goal
This is a response to the repetitive RP community of SAMP.
A long time ago I wanted to make a server that didn't need: staffs/admins, any type of forum, "/me attempts to walk forward" interactions, but also something that would capture realistically the feeling of the original setting of the game.
It aims to be a rework of the original SA game with minimal modifications.
I also wanted to honor Rockstar North's greatly researched work and continue working in their intended direction.
I am not going to describe all features and jobs here because most of them are discovered mid to late game.




Origin
The script is made to allow player to do their own things.
Because the server's story is going on since 2008, it's one of the richest out there.
The server was private for a while, but was set public around 2015-16.




How To


Transportation / Vehicles:
There are 4 main ways to get transportation:
  • Find an 'abandoned' vehicle from any train stations or airports;
  • Use our free public transportation network (it includes: trains, buses and taxis);
  • Buy a vehicle from a dealership (same locations as the original game);
  • Buy a vehicle from another player;

[Image: transport.jpg]


Money / Jobs:
Naturally, in true LA fashion, you can work for as many jobs/factions per paycheck as you want.
There are 5 main ways to make money:
  • Factions that hires you automatically (through the Employment Center);
  • Factions that you need to apply to (example: LSPD or any other emergency/gov agency);
  • RPed jobs / working for other players (example: Trucker, Mafia, Factories);
  • Gangs (doesn't require an application);
  • Zombies (they drop money);
This is a screenshot of the job list just at the Employment Center:

[Image: money.jpg]


Justice / Jails:
This is some of the things that differ from other servers:
  • Any arrest must be documented, the police officer must write a deposition for every person/case;
  • No teleportation from end to finish. Police forces need to do all the appropriate transport from the police station to the jail. DOC officers(prison guard) must transport you to your trial, then back to prison;
  • There is no automatic timer, there is no way to see your time left and you are not assigned a time before going on trial;
  • When your time is over, you are not teleported out of prison, you must be released by a prison guard;
In short, you really don't want to be arrested. You will not be able to just murder someone, go to prison, and get out the same day. This server takes prison seriously and realistically.
On the other hand, you will not be put in prison for no reasons. Police officers DO NOT have any bonuses for arrests and must do paperwork every time so there is no incentive to arrest someone who isn't a real threat.
There is also a real possibility of escape any time (especially during transport). The police are not overpowered, for example: they have no taser and have to use number and strategy to arrest people.


[Image: justice.jpg]


Life / Mechanics:
This is some of the mechanics that may differ from other servers:
  • If you die, everything you have on your player will drop on the ground;
  • Other than doors, what you see on the mini-map represents what you hear;
  • When you are not connected, your player is still shown in the game and can be frisked, killed, etc;
  • To heal, you must eat food (If you eat too fast, you will vomit and loose health);

[Image: life.jpg]




Behavior / Rules
The script is a unique work with its own rules. Forget everything you know about 'SAMP roleplays'.
This is not our usual 'turn by turn' RP we are used to, this is an 'action' RP.
There is no '/me attemps to ...' type of deal. The melee aspect is taken care of with melee commands and actions.
You have to play the game and you can't report because someone did not 'RP' properly.
The staff WILL NOT interfere with the game: Got DMed? IC matter! Police is corrupted? IC matter! There is NO OOC matter, no OOC rules and no cancer admin staff (Yes there is an anti-cheat).




Ambiance / Community
There is no forum to fall back on, the game must be played IG entirely.
People usually send letters for communication (Writing on papers bought at shops).
Think of it as Rust or Dayz where everything is legal and your worst enemies are other players.




Environment / Technical
This is a professionally owned SAMP server.
It's hosted professionally on a datacenter Windows Machine 24/7 and on hosted tab.
I think this is the oldest SAMP server out there!
Here is the link: www.sa-arp.net
To connect: sa-arp.net:7777





Conclusion
Do not expect an easy server, this server is very difficult and tries to be very realistic (too much at times :P).

But it's not hard to start at all!
Our true realistic economy is new and so house and stuff are VERY cheap at the moment obviously.

Have a nice play!







[Image: header_trans.png]