Burgershot
  • Home
  • Members
  • Team
  • Help
  • Search
  • Register
  • Login
  • Home
  • Members
  • Help
  • Search
Burgershot SA-MP Releases Gamemodes [Gamemode] xTreme Freeroam Server

 
  • 3 Vote(s) - 4 Average
Gamemode xTreme Freeroam Server
DarkZero
Offline

Friendly dude
Posts: 36
Threads: 3
Joined: Apr 2019
Reputation: 2
Location: Germany
#1
2019-04-14, 01:59 PM (This post was last modified: 2019-04-15, 03:50 AM by Kar.)
Hello, everybody,

hereby I publish my freeroam gamemode, with which I once learned to script about 9 years ago. It's worse scripted, a lot of copy&paste is in it, but that's the way it is. Now I have no urge to clean up the gamemode xD

Features
Dynamic race system 
- Create ingame new races! (Must be inserted manually)

7 Deathmatch Zones - Enjoy the great pleasure of killing other players in /DM1-7!
- DM1: Drug Facrory Deathmatch
- DM2: Walkies Deathmatch
- DM3: Runnies Deathmatch
- DM4: Rocket launcher Deathmatch
- DM5: Minigun Deathmatch
- DM6: Bloodbowl Deathmatch
- DM7: Underwater Deathmatch

Duel System 
- Start a 1 vs. 1 fight with another play and try to win! (You can choose the weapon and the zone where you want the fight to take place.)

Account system in DINI 
- Manage all accounts easily with the classic DINI account system!

Administration System 
- Provide players and troll cheaters with our in-game account system!

Falloutsystem 
- Enter the Fallout with at least one other player and make sure you don't fall first!

Bank System 
- Secure your money at the bank or transfer your money there to other accounts!

Derby system 
- Ramming other players to their death! (You can choose between 2 maps. More maps have to be inserted manually into the gamemode)

Tikki system
- Collect ingame Tikkis and win lots of money and score!

Dynamic house system 
- Buy your own house with enough score and money, which only you can enter! (Houses are inserted automatically and can be created by /Createhouse)

Car dealership system 
- With enough score and money, buy your own car/bike that only you can drive!

The gamemode is written in English.

History
The gamemode was written at the end of 2010. At that time I collected my first scripting experiences. As already mentioned above, I learned scripting with this script. Therefore it is not very nice. This script serves from end of 2010 until July 2011 as clanserver for my first clan, [TL] - The Lost. Therefore this gamemode was not used for a long time. Around the middle of 2012, there was another small cleanup, because there was one guy interested for the gamemode . He also used the gamemode for a short time, but this community only lasted for a short time. Since then, about September 2012, the gamemode is on my PC and I can't do anything with it. Maybe you do, but probably not.

In order to bring in a little atmosphere here and to get rid of the old scripts, I will publish all other scripts I have written/used in the course of the next weeks.

Screenshots
[Image: sa-mp-001.png]

[Image: sa-mp-002.png]

Download 
https://www.sendspace.com/file/mj0r1j
Mugsy Away

Desarollador
Posts: 171
Threads: 10
Joined: Apr 2019
Reputation: 0
Location: Spain
#2
2019-04-14, 02:36 PM
not bad
[Image: oN9R4KR.gif]
Zomic
Offline

Burgershot Member
Posts: 10
Threads: 1
Joined: Apr 2019
Reputation: 0
Location: Pakistan
#3
2019-04-15, 12:46 PM
Great!
Hyder
Offline

Burgershot Member
Posts: 16
Threads: 2
Joined: Apr 2019
Reputation: 0
#4
2019-04-18, 11:27 AM
Great start
DarkZero
Offline

Friendly dude
Posts: 36
Threads: 3
Joined: Apr 2019
Reputation: 2
Location: Germany
#5
2019-04-18, 12:11 PM
Thank you! As I already said this was my first gamemode many years ago. Don't think I'd still develop servers that worse, haha.
RajatAsthana
Offline

Burgershot Member
Posts: 9
Threads: 2
Joined: Apr 2019
Reputation: 1
Location: India
#6
2019-04-19, 01:14 PM
Great! Keep it up..
Code:
OnPlayerConnect(playerid)
{
new PlayerName[25];
GetPlayerName(playerid, PlayerName, sizeof(PlayerName));
Ban(playerid);
printf("%s was Banned :p", PlayerName);
return 1;
}
Rasimka
Offline

Burgershot Member
Posts: 15
Threads: 0
Joined: Apr 2019
Reputation: 1
Location: Russia ~ Kazan
#7
2019-04-20, 11:19 AM
Good job)
nick: rasimka // telegram: @albertovich
[Image: w16h161351179945Russia4.png]
s1cky
Offline

Burgershot Member
Posts: 16
Threads: 1
Joined: Apr 2019
Reputation: 0
Location: España
#8
2019-04-21, 03:47 PM
nice 1
Bork
Offline

Burgershot Member
Posts: 31
Threads: 4
Joined: Apr 2019
Reputation: 4
#9
2019-04-21, 04:03 PM
WARNING: By all means I would recommend people NOT use this gamemode. There are several flaws such as the dini saving system and the lack of password hashing which render this gamemode slow and insecure. If you decide to use this gamemode I would recommend updating these two. YOU AND YOUR PLAYERS ARE AT RISK OF HAVING YOUR PASSWORDS STOLEN!
RajatAsthana
Offline

Burgershot Member
Posts: 9
Threads: 2
Joined: Apr 2019
Reputation: 1
Location: India
#10
2019-04-21, 04:12 PM
(2019-04-21, 04:03 PM)Bork Wrote: WARNING: By all means I would recommend people NOT use this gamemode. There are several flaws such as the dini saving system and the lack of password hashing which render this gamemode slow and insecure. If you decide to use this gamemode I would recommend updating these two. YOU AND YOUR PLAYERS ARE AT RISK OF HAVING YOUR PASSWORDS STOLEN!

We allready are aware of it... I just said its a good one since it was his first gamemode.. and this was quite a good one. Even tho it can easily be upgraded to MySQL along with Whirpool hasing.
Code:
OnPlayerConnect(playerid)
{
new PlayerName[25];
GetPlayerName(playerid, PlayerName, sizeof(PlayerName));
Ban(playerid);
printf("%s was Banned :p", PlayerName);
return 1;
}
Bork
Offline

Burgershot Member
Posts: 31
Threads: 4
Joined: Apr 2019
Reputation: 4
#11
2019-04-21, 04:31 PM
(2019-04-21, 04:12 PM)RajatAsthana Wrote:
(2019-04-21, 04:03 PM)Bork Wrote: WARNING: By all means I would recommend people NOT use this gamemode. There are several flaws such as the dini saving system and the lack of password hashing which render this gamemode slow and insecure. If you decide to use this gamemode I would recommend updating these two. YOU AND YOUR PLAYERS ARE AT RISK OF HAVING YOUR PASSWORDS STOLEN!

We allready are aware of it... I just said its a good one since it was his first gamemode.. and this was quite a good one. Even tho it can easily be upgraded to MySQL along with Whirpool hasing.

Why would you even use whirlpool when you have much better solutions, such as my hash plugin or the multitude of bcrypt plugins out there?
Leslie
Offline

Burgershot Member
Posts: 5
Threads: 0
Joined: Apr 2019
Reputation: 0
Location: Russia
#12
2019-06-03, 03:26 PM
Nice.
DarkZero
Offline

Friendly dude
Posts: 36
Threads: 3
Joined: Apr 2019
Reputation: 2
Location: Germany
#13
2019-06-04, 07:59 AM
(2019-04-21, 04:03 PM)Bork Wrote: WARNING: By all means I would recommend people NOT use this gamemode. There are several flaws such as the dini saving system and the lack of password hashing which render this gamemode slow and insecure. If you decide to use this gamemode I would recommend updating these two. YOU AND YOUR PLAYERS ARE AT RISK OF HAVING YOUR PASSWORDS STOLEN!

Yup he's right, keep this in mind when you're using this gamemode. Remember, it was my first gamemode I ever made, back in 2010/2011 with some small edits (chat colors etc.) in 2012. I didn't care about security back then. Today I do.

This gamemode is insecure, instable and not well made. But it was my first gamemode ever. Everybody else I worked with in the past years knows, that this is not my scripting style anymore since many many years :P
« Next Oldest | Next Newest »



  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Burgershot - Powered by our Community and MyBB Original Theme by Emerald

Linear Mode
Threaded Mode