Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 7,010
» Latest member: Elsen1940
» Forum threads: 2,345
» Forum posts: 12,226
Full Statistics
|
Online Users |
There are currently 222 online users. » 0 Member(s) | 220 Guest(s) Bing, Google
|
Latest Threads |
A simple suggestion as a ...
Forum: Questions and Suggestions
Last Post: Elsen1940
7 hours ago
» Replies: 0
» Views: 7
|
What got you into SA-MP a...
Forum: Chat
Last Post: alecnia
Today, 01:17 AM
» Replies: 1
» Views: 86
|
I know Kalcor left the bu...
Forum: Questions and Suggestions
Last Post: NoxxeR
Yesterday, 09:25 AM
» Replies: 0
» Views: 23
|
Best practices for conver...
Forum: Tech
Last Post: Raity1958
2025-04-15, 09:49 AM
» Replies: 0
» Views: 30
|
I would like to know abou...
Forum: General Discussions
Last Post: Wriney
2025-04-15, 07:14 AM
» Replies: 0
» Views: 27
|
Mini Games
Forum: Advertisements
Last Post: Voldy
2025-04-15, 03:59 AM
» Replies: 9
» Views: 1,804
|
help
Forum: Programming
Last Post: J0nathan550
2025-04-14, 06:10 PM
» Replies: 1
» Views: 138
|
help with hotdog vendor s...
Forum: Programming
Last Post: J0nathan550
2025-04-14, 06:09 PM
» Replies: 4
» Views: 291
|
Struggling with NPC sync ...
Forum: Tech
Last Post: mnemonic
2025-04-10, 07:47 AM
» Replies: 0
» Views: 49
|
RedTurbo Zombie Survival ...
Forum: Advertisements
Last Post: Undead
2025-04-10, 06:27 AM
» Replies: 0
» Views: 53
|
|
|
Can I use MS Access for Database on Open:MP? |
Posted by: anil_erdogan0 - 2024-08-07, 09:09 AM - Forum: Questions and Suggestions
- Replies (1)
|
 |
I want create a new Roleplay server.
I tried learn MySQL or alternatives (like SQLite) but I don't like its running style.
I think, I can use a new modern method for storing data.
Can I use Microsoft Access database (.mdb / .accdb) files or Libre Office / Open Office database (.odb) files on OPEN:MP with C++?
If I can use, how? (I don't start coding now, if this way can using I start developing.)
I know, I can't do this on older SA:MP. I hope I can do this on OPEN:MP.
If I can't, you can write other ways like .json (actually i don't know json can running).
Thanks for reading and sorry for my half-bad English. 😊
|
|
|
Autorefundsystem errors |
Posted by: COLT45 - 2024-08-05, 07:25 PM - Forum: Pawn Scripting
- Replies (1)
|
 |
Code: new bool:AlreadyRefunded[ MAX_PLAYERS ];
CMD:refundme( playerid )
{
if( AlreadyRefunded[ playerid ] == true ) SendClientMessage( playerid, COLOR_GREY, "You're already refunded, what are you trying to do, mhm..?" );
else
{
PlayerInfo[playerid][pLevel] = PlayerInfo[playerid][pLevel]+3;
GiveMoney(playerid, 2500000);
PlayerInfo[playerid][pDonateRank] = 2;
format(str, 32, "%02d/%02d/%d", Month, Day, Year);
strmid(PlayerInfo[giveplayerid][pVIPJoinDate], str, 0, strlen(str), 255);
format(str, 32, "%02d/%02d/%d", Month +1, Day, Year);
strmid(PlayerInfo[giveplayerid][pVIPExpDate], str, 0, strlen(str), 255);
if(Month == 12)
{
format(PlayerInfo[giveplayerid][pVIPExpDate], 32, "%02d/%02d/%d", 1, Day, Year +1);
}
format(str, sizeof(str), "Join Date: %s, Expire Date: %s", PlayerInfo[giveplayerid][pVIPJoinDate], PlayerInfo[giveplayerid][pVIPExpDate]);
SendClientMessage(giveplayerid, COLOR_GRAD2, str);
}
return 1;
}
And the errors i get when compiling script: Code: ../gamemodes/inc/autorefundsys.inc(10) : error 017: undefined symbol "str"
../gamemodes/inc/autorefundsys.inc(11) : error 017: undefined symbol "str"
../gamemodes/inc/autorefundsys.inc(12) : error 017: undefined symbol "str"
../gamemodes/inc/autorefundsys.inc(13) : error 017: undefined symbol "str"
../gamemodes/inc/autorefundsys.inc(14) : error 017: undefined symbol "Month"
../gamemodes/inc/autorefundsys.inc(16) : error 017: undefined symbol "giveplayerid"
../gamemodes/inc/autorefundsys.inc(18) : error 017: undefined symbol "str"
../gamemodes/inc/autorefundsys.inc(18) : error 017: undefined symbol "str"
../gamemodes/inc/autorefundsys.inc(18) : error 029: invalid expression, assumed zero
../gamemodes/inc/autorefundsys.inc(18) : fatal error 107: too many error messages on one line
Compilation aborted.
Pawn compiler 3.10.8 Copyright (c) 1997-2006, ITB CompuPhase
10 Errors.
Im really new to scripting :D if you guys can figure this out, could you explain how do you define symbols? like str, giveplayerid?
|
|
|
What's the deal with timers? |
Posted by: M.B. Kovas - 2024-08-05, 08:32 AM - Forum: Pawn Scripting
- No Replies
|
 |
Hello everyone.
I've gotten back into scripting after a long delay and was once again reminded of the issues regarding timers. I am not using any timer plugins (I'll get to that later) so this regards the native 'SetTimer' and 'SetTimerEx'. The inaccuracy of them is one thing, although there is another problem - sometimes the timers are either not calling the function or they are not starting at all. My primary assumption was that something was off with the code, but a specific test I have conducted has proven to me that this might be beyond my control.
I have set up a print/SCM message for a select few functions that timers are supposed to execute, and the proportion is something along the lines of 3-5 times out of 10 the function not being called at all. I have even tried a memory-costing alternative of setting up three timers to call the same function after the same amount of time as an insurance policy, and usually I would get 3 messages back, but sometimes I would get only 2 - one of the timers would not start/call the function. Needless to say I would rather not resort to multiplying timers for the same thing to not cause data packet overload.
Code: public OnPlayerDeath(playerid, killerid, reason)
{
SetTimerEx("TestFunction", 1000, false, "i", playerid);
SetTimerEx("TestFunction", 1000, false, "i", playerid);
SetTimerEx("TestFunction", 1000, false, "i", playerid);
return 1;
}
forward TestFunction(playerid);
public TestFunction(playerid)
{
SendClientMessage(playerid, -1, "Test");
return 1;
}
For example, this particular code above seemingly needs to return the message three times, but on some occasions it only returns it twice. This is a major obstacle for me.
My question, however, is not whether the native timers are faulty. That's a given. My question would rather be what are the most stable and reputable timer plugins and includes out there? What do you, scripters, personally like to use? This also concerns the accuracy of timers.
We can open a broader discussion from this.
|
|
|
Open Roleplay - Medium Roleplay |
Posted by: thebust3rs - 2024-08-04, 08:15 AM - Forum: Advertisements
- No Replies
|
 |
👋 Welcome to Open Roleplay!
🏙️ Set in San Fierro, our server hosts a unique location for our players to enjoy. Most servers are set in Los Santos which has been done to death! With custom mappings, we've refreshed San Fierro for all to enjoy!
ℹ️ We are a Medium Roleplay community which acts as a direct bridge for anyone to come enjoy! Whether you're not great at roleplay or you're an expert - we have a spot for you in our community.
💻 The development team at Open Roleplay work to push updates out on a monthly basis so that you never get bored! We also love to listen to our community and take all feedback we are given.
📱 Don't have anything to play on but mobile? No worries, mobile players are welcome too at our server alongside 0.3.7 AND 0.3.DL players.
🤵 We have a welcoming staff team ready to help you at short notice. Whether you need help getting started or need to report an issue, our staff will always be around to lend a hand.
🚓 Live the life you want. Become a criminal and have shootouts with the police, take over turfs with your gang members, rob crate island or even the bank. Or you could become a medic and help those in need.
Discord Server: https://discord.gg/AcgTkbDMUr
# BETA Phase!
# Staff Recruitment are open for now lets join with us!
![[Image: vdHRfBu]](https://imgur.com/a/vdHRfBu)
|
|
|
Il reste des français sur samp ?? |
Posted by: Lionel62300 - 2024-08-04, 06:58 AM - Forum: French/Fran?ais
- Replies (2)
|
 |
Bonjour, je suit un ancien de gta Samp ca date un peu
j'ai fait plusieurs serveur SFRP, IFRP, LACRP , jetait développeur pour la plupart ..
J'aimerais juste savoir si des personnes française joue encore a samp en 2024 ?
|
|
|
SAMP and Kalcor/Kyeman |
Posted by: Rintos - 2024-08-02, 02:45 PM - Forum: Chat
- Replies (3)
|
 |
Im going straight to the point, ive done some research about the history of SAMPnull and as i have research about the members of the SAMP development team (Silent, Wicko, dugi, CrazyBob) i found out that Y_Less is still somehow active (https://github.com/pawn-lang/YSI-Includes). Im wondering if he works with the Open.MP team, and also what happened to the SAMP development team, like what made them dissolve, leaving only Kalcor to add security updates to 0.3.7 and make 0.3.8 (0.3DL-R1)
Some parts of my script, its translated to english, originally this is written in Spanish as its where im from.
The development of SAMP
As soon as San Andreas came out for PC, the development of SAMP began. At first there was a lot of controversy. The developers announced that SAMP would avoid being a multiplayer experience full of Deathmatch, Roleplays and different play styles like VCMP was and would have a mode . Cooperation in which you could play with five friends, with six slots on each server. This idea was received poorly by the community and the GTANet forums were filled with hate towards the development team's decision.
About three months after this decision, Kyeman (Kalcor at the time), the head of the team, decided to abandon the project in the middle of the Cooperation mode debate, leaving all the work and code to the second in command, spooky, who changed the project name to GTA:Multiplayer.
Within about a month, Kyeman returned and decided to help out on the project, at this point the Co-op mode idea was completely scrapped and the project was renamed to SAMP (San Andreas Multiplayer).
The versions of SAMP
I am not going to talk about all versions of SAMP, rather I will focus on 0.3.7, its patches and the most important one. It was October 18, 2019 and Kalcor had declared that he had abandoned SAMP completely, at that time the latest version was 0.3.7-R4, according to Kalcor, he never moved towards 0.4 because he had the belief that four was a symbol of bad luck, he called his version rating style "kalver", the R meant a small change, a security patch, and the change in number, for example 0.2 to 0.3 meant a major update . In any case, although Kalcor abandoned the project in 2019, it was not until November 2022 that he released a new security patch, patch 0.3.7-R5. Kalcor's words. "There is an exploit in the client. It is a critical RCE vulnerability that allows server owners to execute unauthorized code on players' PCs" clarifying that the -R versions contained security patches and bug fixes, finally advising to the community. "Always use the latest version"
Please, help.
|
|
|
[ENG] Valhalla RolePlay Supreme V3 Top VIP Server! |
Posted by: 016haikalfais - 2024-08-02, 10:15 AM - Forum: Advertisements
- No Replies
|
 |
@everyone
# [ENG] Valhalla Roleplay Supreme V3
# Add In Your Favorite List IP: 162.19.133.164:7262
**Hello Dear Civilian's Today We Introduce Our Best SA-MP RolePlay!**
**Server 24/7 Online And Waiting For You!**
**The Server Is Open Unlimited RolePlay Server Top VIP Servers!**
**We Provide You Best RolePlay Server Its 100% Light RP No Stirct Rules Play Your Own Way Thank You!**
**24/7 Our Staff Working On Discord And Forum You Contact Us Anytime Click Link Above!**
**Discord : https://discord.gg/RmJFyW4v **
**Forum: https://valhalla-roleplay.forumotion.com/ **
**- 24 Factions Top Premium**
**- Business / Houses**
**- /autoinv Auto Join Faction Which You Select**
**- /autorang rankup factions**
**- /promocode Giveaways Everydays Code= supreme / updatev3**
**- Dynamic faction Quest**
**- 3D Dynamic Accesories **
**- /invent or Press Y Inventory System**
**- Bank Robs / Bomb Blast Quest**
**- President System / Election System**
**- Container system**
**- /donaterub - /donate VIP Things**
**- Cases System x2 Luck**
**- Garage System - Up To 30 Vehicle Allowed To Buy!**
**- Anti Cheat Provided**
**- Account Safety IP Security Active!**
**- Gang Capture System 3 Differents - Teritories/ghetto/Most kills**
**- Side Jobs Provided!**
**Thank You Joining With Us Beloved Founder Of [ENG] Valhalla Roleplay Supreme V3!**
|
|
|
BTTDM Zombie Survival |
Posted by: Penguin1997 - 2024-08-02, 05:53 AM - Forum: Advertisements
- No Replies
|
 |
Description:
The server was officially launched in 2015 and up ever since. It is based on the unique and mixed concept of Left 4 Dead 2, where a competitive battle between real zombies and humans takes place and some of the survivors tend to get infected due to biohazards spread across town. A total survival time of 8 minutes is necessary to defend yourself against the relentless zombies coming after you, concluding in an escape afterwards through an evacuation point. The fear of zombies is unhinged, while the anticipated survival remains a mystery.
Features:
☣ More than 300+ maps categorized in small & large.
☣ Hunter, Witch, Boomer & many other unique zombies.
☣ Many achievements are there to complete and unlock rewards in return.
☣ Zombie shop includes features such as ladders, special zombies with special abilities.
☣ Humans have variety of weapon features that prevent zombies from getting close.
☣ Clan System - Join a clan that suits you the best or make your own.
☣ Cookies System - Eat cookies to recover some health while injured.
☣ Trading System - Share or trade xp, coins, cookies to your buddies.
☣ VIP System - Unlock amazing features that can boost your gameplay & support server.
☣ House System - Available in freedom mode, where you can buy house and collect house bucks in return.
☣ Job System - Trucking, Pizza delivery, Cargo delivery can be found in freedom mode.
☣ Vehicle System - Buy your favorite vehicles from dealership and modify them according to your likes.
Details:
☣ Server IP: 51.89.188.191:7777
☣ Forums: https://smf.bttdm.com
☣ Zombie Survival Discord: https://discord.gg/z5W5WEk9mq
☣ BTTDM Community Discord: https://discord.gg/42rfP6k5tf
Monitor:
HostName: BTTDM Zombie Survival (0.3.7)
Address: 51.89.188.191:7777
Players: 45 / 100
Ping: 156
Mode: BTTDM Zombie
Language: English
|
|
|
Open.mp can be usefull in 32 bits pc? |
Posted by: Cranjis - 2024-08-02, 12:57 AM - Forum: Questions and Suggestions
- No Replies
|
 |
I'm trying install open.mp in my pc (32 bits), but the program request a 64 bits system, so i dont know if the open.mp can be usefull in 32 bits. If have a any solution, or alternative, please shared with me, good night (or day)
(i accept responses in spanish and english)
|
|
|
Rogue RPG ~ in the big deal. |
Posted by: samp.roguerpg - 2024-08-01, 09:27 PM - Forum: Turkish
- No Replies
|
 |
🌟 Rogue GunRP - Kapsamlı ve Eşsiz Bir Rol Oynama Deneyimi! 🌟
🚀 Hoşgeldiniz!
Eğer siz de dinamik ve sürükleyici bir rol oynamak istiyorsanız adım atmak istiyorsanız, doğru yerdesiniz! Rogue GunRP, size kapsamlı ve zengin bir RP deneyimi sunarak, sanal dünyada gerçek bir karakter yaşamı yaşama fırsatı sunuyor.
🔫 Neden Rogue GunRP?
Özgün İçerikler: Tamamen özgün senaryolar ve karakter arka planları ile benzersiz bir RP deneyimi.
Gerçekçi Sistemler: Detaylı ekonomi ve sosyal sistemler ile gerçekleştirilebilir bir oyun deneyimi.
Topluluk Odakli: Aktif ve yardımsever bir topluluk, dağıtıma anında yanıt verir.
Yatırım Yapılmış İnovasyon: Sürekli güncellenen ve iyileştirilmiş sistemler, yeni özellikler.
🌐 Katılın ve Başlayın!
Hemen üye olun ve Rogue GunRP'den bir adım atın! Karakterinizi birleştirin, rolünüzü seçin ve fantastik bir sürüme başlayın!
Rogue GunRP hakkında en güncel bilgiler ve topluluk gelişmelerini forumumuzdan takip edebilir, diğer oyuncularla destekleyebilir!
💬 Sorularınız mı Var?
Herhangi bir sorunuz varsa, bize ulaşmaktan çekinmeyin! Boyut eşitliği olmadan özgürlük duyarlılığınız.
Rogue GunRP - Yola Çıkın İçin Gerçek Bir Rol Yapma Deneyimi!
Anlaşmazlık: discord.gg/roguerpg
İp Adresi: 185.160.30.237:7777 / Kilitli
[/alıntı]
|
|
|
|