Tuesday, August 16, 2011

MultiLanguage (Message, GameText, TextDraw, Dialog)

Hi

I don't relase any my scripts/include there, but it can help many people.
It's simple include allows you to send a message in multiple languages



/*
Notka autora - usuniesz, tracisz prawo do wystawiania/korzystania z tego includa
MultiLanguageMessage by RPS (aka Diler)
Last update: 29.07.2011

========================================
Wyprodukowano dla GTACenter.Info
========================================

native LanguageMessage(playerid, color, ...);
native LanguageMessageToAll(color, ...);
native LanguageTextDrawMessage(playerid, Text:ID, ...);
native LanguageGameTextForPlayer(playerid, styleid, czas, ...);
native LanguageGameTextForAll(styleid, czas, ...);
native LanguageDialogForPlayer(playerid, dialogid, style, ...);
*/

#include

#define LANGUAGE_POLISH 0
#define LANGUAGE_ENGLISH 1
#define LANGUAGE_DEFAULT 2
//An example of another:
//#define LANGUAGE_NAME 3

#define LANGUAGE_SIZE 128
#define LANGUAGE_DIALOG 100 // DIALOG ID
#define LANGUAGE_INFO "Polski\nEnglish\nInny" // Next add acc. pattern "\nLanguage"

#define ChooseLanguage(%0) ShowPlayerDialog(%0, LANGUAGE_DIALOG, DIALOG_STYLE_LIST, "Choose language", LANGUAGE_INFO, "OK", "") // Function showing the language selection dialog

stock LANGUAGE_ODR(playerid, dialogid, response, listitem) // Use this in OnDialogResponse
{
if(dialogid == LANGUAGE_DIALOG && response)
SetPVarInt(playerid, "Language", listitem);
else if(dialogid == LANGUAGE_DIALOG && !response)
SetPVarInt(playerid, "Language", 0);
}

stock LanguageMessage(playerid, color, ...)
{
new msg[LANGUAGE_SIZE];
new args = numargs();
new language = GetPVarInt(playerid, "Language");

for(new i=2; i < args; i++)
{
if(language == i-2)
{
for(new chr; chr < sizeof msg; chr++)
msg[chr] = getarg((i+1+language), chr);

if(msg[0] == '\0')
SendClientMessage(playerid, color, "Error in script: LanguageMessage doesn't work, report this problem to server admin.");
else
SendClientMessage(playerid, color, msg);
}
}
return language;
}

stock LanguageMessageToAll(color, ...)
{
new msg[LANGUAGE_SIZE];
new args = numargs();
new language;

for(new i, g = GetMaxPlayers(); i < g; i++)
{
if(IsPlayerConnected(i))
{
language = GetPVarInt(i, "Language");
for(new a=1; a < args; a++)
{
if(language == a-1)
{
for(new chr; chr < sizeof msg; chr++)
msg[chr] = getarg((a+1+language), chr);

if(msg[0] == '\0')
SendClientMessage(i, color, "Error in script: LanguageMessageToAll doesn't work, report this problem to server admin.");
else
SendClientMessage(i, color, msg);
}
}
}
}
return 1;
}

stock LanguageTextDrawMessage(playerid, Text:ID, ...)
{
new msg[LANGUAGE_SIZE];
new args = numargs();
new language = GetPVarInt(playerid, "Language");

for(new i=2; i < args; i++)
{
if(language == i-2)
{
for(new chr; chr < sizeof msg; chr++)
msg[chr] = getarg((i+1+language), chr);

if(msg[0] == '\0')
TextDrawSetString(ID, "Error in script: LanguageTextDrawMessage doesn't work, report this problem to server admin.");
else
TextDrawSetString(ID, msg);
}
}
return language;
}

stock LanguageGameTextForPlayer(playerid, styleid, czas, ...)
{
new msg[LANGUAGE_SIZE];
new args = numargs();
new language = GetPVarInt(playerid, "Language");

for(new i=3; i < args; i++)
{
if(language == i-3)
{
for(new chr; chr < sizeof msg; chr++)
msg[chr] = getarg((i+1+language), chr);

if(msg[0] == '\0')
GameTextForPlayer(playerid, "Error in script: LanguageGameTextForPlayer doesn't work, report this problem to server admin.", czas, styleid);
else
GameTextForPlayer(playerid, msg, czas, styleid);
}
}
return language;
}

stock LanguageGameTextForAll(styleid, czas, ...)
{
new msg[LANGUAGE_SIZE];
new args = numargs();
new language;

for(new a, g = GetMaxPlayers(); a < g; a++)
{
if(IsPlayerConnected(a))
{
language = GetPVarInt(a, "Language");
for(new i=2; i < args; i++)
{
if(language == i-2)
{
for(new chr; chr < sizeof msg; chr++)
msg[chr] = getarg((i+1+language), chr);

if(msg[0] == '\0')
GameTextForPlayer(a, "Error in script: LanguageGameTextForAll doesn't work, report this problem to server admin.", czas, styleid);
else
GameTextForPlayer(a, msg, czas, styleid);
}
}
}
}
return language;
}

stock LanguageDialogForPlayer(playerid, dialogid, style, ...)
{
new msg[4][LANGUAGE_SIZE];
new largs = ((numargs()-3) /5);
new language = GetPVarInt(playerid, "Language");
new last = 7;

if(language)
last += (language * 5);

for(new i=0; i < largs; i++)
{
if(language == i)
{
for(new chr; chr < sizeof msg[]; chr++)
{
msg[0][chr] = getarg((last - 3), chr);
msg[1][chr] = getarg((last - 2), chr);
msg[2][chr] = getarg((last - 1), chr);
msg[3][chr] = getarg((last), chr);
}

if((msg[0][0] == '\0') || (msg[1][0] == '\0') || (msg[2][0] == '\0'))
ShowPlayerDialog(playerid, dialogid, DIALOG_STYLE_MSGBOX, "Error", "Error in script: LanguageDialogForPlayer doesn't work, report this problem to server admin.", "OK", "");
else
ShowPlayerDialog(playerid, dialogid, style, msg[0], msg[1], msg[2], msg[3]);
}
}
return language;
}
Read More..

Spawn Messages

//Includes
#include
//Defines
#define FILTERSCRIPT
#if defined FILTERSCRIPT
//Colors
#define COLOR_GREY 0xAFAFAFAA
#define COLOR_GREEN 0x33AA33AA
#define COLOR_RED 0xAA3333AA
#define COLOR_YELLOW 0xFFFF00AA
#define COLOR_PINK 0xFF66FFAA
#define COLOR_BLUE 0x0000BBAA
#define COLOR_LIGHTBLUE 0x33CCFFAA
#define COLOR_DARKRED 0x660000AA
#define COLOR_ORANGE 0xFF9900AA
#define COLOR_BROWN 0xA52A2AAA
//Forwards
forward Spawn(playerid);
//Filterscript Stuff
public OnFilterScriptInit()
{
print("\n----------------------------------------------");
print(" Spawn Messages");
print(" By [FF]Chrislis");
print(" � All Rights Reserved");
print("----------------------------------------------\n");
return 1;
}

public OnFilterScriptExit()
{
return 1;
}


public OnPlayerConnect(playerid)
{
SetTimerEx("Spawn", 2000, 0, "i", playerid);
return 1;
}

public Spawn(playerid)
{
new PLName[24];
GetPlayerName(playerid, PLName, 24);
{
if(!strcmp(PLName, "[FF]Chrislis", true))
{
SendClientMessageToAll(COLOR_PINK, "BOO-YEAH, The Awesome Admin has Arrived FTW!");
SpawnPlayer(playerid);
return 1;
}
else
if(!strcmp(PLName, "[FF]Jamasen", true))
{
SendClientMessageToAll(COLOR_LIGHTBLUE, "***[FF]Jamasen Has Joined The Server So Watch Out***");
SpawnPlayer(playerid);
return 1;
}
else
if(!strcmp(PLName, "[FF]LabriK", true))
{
SendClientMessageToAll(COLOR_RED, "Fucking Oath! The boss has arrived");
SpawnPlayer(playerid);
return 1;
}
else
if(!strcmp(PLName, "[FF]BoReK", true))
{
SendClientMessageToAll(COLOR_DARKRED, "LabriK, GTFO Man, SRSLY!");
SpawnPlayer(playerid);
return 1;
}
else
if(!strcmp(PLName, "Thomas", true))
{
SendClientMessageToAll(COLOR_ORANGE, "Tom has arrived, RUN LIKE FUCK!");
SpawnPlayer(playerid);
return 1;
}
else
if(!strcmp(PLName, "Kiiper_selpht", true))
{
SendClientMessageToAll(COLOR_BROWN, "Give up the Emeralds or die, I don't love you");
SpawnPlayer(playerid);
return 1;
}
return 0;
}
}
#endif
Read More..

Tuesday, July 5, 2011

GTA IV Hints, Tips, Easter Eggs, and Secrets

Don't Pay Toll
If you approach a toll booth with an emergency vehicle (sirens on), the gate will open and you'll avoid paying $5.
(Submitted by: Mike)
Read More..

Gta 4 cheats

Full health and armor

Dial "3625550100" on the cell phone. If you enter this code while in a vehicle, it will also repair it. Note: This phone number translates to "DOC-555-0100". This code prevents the "Cleaned The Mean Streets", "Finish Him", "One Man Army", and "Walk Free" achievements from being earned.
Full health, armor, and ammunition

Dial "4825550100" on the cell phone. If you enter this code while in a vehicle, it will also repair it. Note: This phone number translates to "GTA-555-0100". This code prevents the "Cleaned The Mean Streets" achievement from being earned.
Weapons tier 1

Dial "4865550100" on the cell phone. This will unlock the baseball bat, handgun, shotgun, MP5, M4, sniper rifle, RPG, and grenades. Note: This phone number translates to "GUN-555-0150". This code prevents the "Cleaned The Mean Streets" achievement from being earned.
Weapons tier 2

Dial "4865550150" on the cell phone. This will unlock the knife, Molotov cocktails, handgun, shotgun, Uzi, AK47, sniper rifle, and RPG. Note: This phone number translates to "GUN-555-0100". This code prevents the "Cleaned The Mean Streets" achievement from being earned.
Remove Niko's wanted level

Dial "2675550100" on the cell phone. Note: This phone number translates to "COP-555-0100". This code prevents the "One Man Army" and "Walk Free" achievements from being earned.
Add one star to Niko's wanted level

Dial "2675550150" on the cell phone. Note: This phone number translates to "COP-555-0150".
Spawn Annihilator police helicopter

Dial "3595550100" on the cell phone. The Annihilator is armed with rockets. Note: This phone number translates to "FLY-555-0100". This code prevents the "One Man Army" and "Walk Free" achievements from being earned.
Spawn Cognoscenti

Dial "2275550142" on the cell phone. Note: This phone number translates to "CAR-555-0142".
Spawn Comet

Dial "2275550175" on the cell phone. Note: This phone number translates to "CAR-555-0175".
Spawn FBI Buffalo

Dial "2275550100" on the cell phone. Note: This phone number translates to "CAR-555-0100".
Spawn Jetmax
Read More..

Thursday, June 23, 2011

WWII Theme TDM

World War Two Team Deathmatch Script Version 5.0


Teams
There are two main teams: Allied and Axis. They both have their own chat wave.

Login/Register System
Made with dudb. Commands near the bottom.
Auto-Save on stats.
Player Levels
Admins: Two levels of Admins: Rc0n and Admin (playerfile)
Players: Normal Player (0), Pilot (can fly the rustlers) at level 200. Tank Commander (Can get RPG's and Grenades from Armoury and drive tanks) at level 500. General of the Army (can get RPG's and Grenades, Drive all vehicles AND has special Admin-Like commands.) At level 1337 "leet."
Note: Admins can set these levels IG with commands found at the bottom.
Read More..

SATDM~RP :V9 RC7: =Release Candidate 7

SATDM~RP Version 9 Final (For SA-MP 0.3b):
SATDM~RP Version 9 Final SendSpace Here
SATDM~RP Version 9Final MediafireHere
Read More..

intelexe's Role Play

I officialy hitted the "New" button in Pawno 5 months ago when i decided to create my own GameMode with my own features.
This GameMode has 38.000 lines at the moment, V1.0, and i am releasing it after a long beta testing period on my own serve LSC:RP.Im releasing it because the community is closed now but ill continue developing it untill this will be fully usable with no bugs.It has some bugs,i couldn't find them all, but you will just have to post here a reply by telling me wich is the bug and i will fix it for the next version.
Read More..

SWX~Stunt World Xtreme~ [Unique!] [ZCMD and sscanf!]

Leeroy and Me (alpha500delta) made a GM for a server, but it did not work well. After that we went to a RP server and we thought that RP wasnt a succes because its overused, so we used this. But this did not work well either (lol) so we thought we'd release it

SWX (Stunt World Xtreme) is a Freeroam/ Stunt GM scripted by Leeroy (some things by me) and Mapped by me.
Here is a list off all features
Read More..

The Godfather

Intro:
As some of you readers might have witnessed that the Godfather server is no longer running my script, as they were trying to trash me as soon a different script would be out since i wasn't active to much anymore.
Because of that i made some drastic actions, that might have been to harsh actually, but what done is done.
Read More..

Los Santos Life Roleplay

Features:
(Most Recently updated, is at the top of List.)

* Updated to 0.3c
* Briefcase Added. Purchase at 24-7
* 3D Texts for /enter.
* /factions Used in Dialog form - Lists available factions. - Anyone can use this command.
* /jobs Used in Dialog form. - Lists available factions. - Anyone can use this command. (Update coming, will set a checkpoint to the job, if clicked.)
* Chop Shop - Can add parts to your vehicle, cheaper
Read More..

Protect the Prime Minister v5.9

GO TO BOTTOM IF YOU DON'T WANT TO READ CHANGELOG AND IF YOU'RE LAZY
You shouldn't remove me from Credits.
Yes, I really like this GM. This Server would've been on Hosted Tab, it's just that I couldn't afford anything anymore and that I decided I need a real life. I'm not making any discouragement to Scripting, but I'm just saying, sometimes we need a life, you know? Here's the rest of the information!:
Read More..

Aidz's Movie Server v1.0

A Movie server is a server that allows people to do whatever they want to do.(That wont get them ban of course)
Heres a list of Commands. Yes i am Aidz thats my In game name.
The script is only about 5000 lines so don't expect much.

COMMANDS


List of commands
/cmds
/cmds2
Health/Armour commands
/kill
/armourr
/heall
Player Personalisation commands
/weapons
/w2 (weapon name)
/s (0-299)
/w (0-49)
/drugs
/t (0-24)
/colors
/color (color name)
/cars
/(vehicle Name)
DM commands
/dm
/copp
/robb
/fail
/win
RP commands
/me
/radio
/rp
/rplist
/world (1-10)
/gskill
/bskill
DOWNLOAD
http://pastebin.com/JgrS6PNk
Read More..

Trucking server

NOTE: this script is quite complex.
If you don't know anything about:
- unzipping a file
- scripting or programming in general
- editing account-files (plain text-files)
- running a server
Read More..

Sounj Bounj Freeroam

Hello guys, I am Ehab1911. This is my very first Made-From-Scratch Gamemode! I am releasing it due the problem of finding any chance of port forwarding my router to host it. And I hope that it will get positive comments, thank you =']
Read More..

GM God Father

About 1 years we working hard for this gamemode. This gamemode type is about Role Playing in San Fierro.
And this gamemode is HEAVILY MODIFIED from the original called The Godfather.

Credits:
Read More..

Roleplay Script (Vortex)

This script (Vortex) is a unique gamemode, scripted from scratch by myself. Below is a list of just some of the features that this script contains:
  • A powerful anticheat system; if a hacker kills a player, the player is reimbursed of their weapons and the hacker is auto-banned, though the anticheat has a constant loop which runs to detect weapon hackers and bans them
  • Phone Credit System, you need credit to make calls/texts
  • Phone Application System; advertisements can be placed through mobile phones, as well as an inline GPS as a phone application, along with a few other applications for phones
  • User (and admin) friendly report system, admins can accept reports that users submit or disregard them
Read More..

[GM] Global Network Role Play 0.3c

♣ Script Introduction ♣
Today i publied this Gamemode to everyone because it's really nice , it's GF but i modified it perfectly . i fixed all bugs so go check it out .

♣ Script Informations ♣
Login and Register with a dialog with colors . New object added front of any hq of faction . New cars added for PD , NG , FBI and about gangs : 2Sultan , 1Huntely , 1Fcr , 1Helycopter (Maverick) with thier interiors . More car added for Taxi Cab Company and its has a small hq this . If you to enter in a place inside (interiors) do not write /enter ! just tatch the door . PD , NG , FBI has a new command /equip must inside the armoury . Too all people can put a laser on their weapons : /laser , /laseroff , /lasercolor . Vehicle Owner Ship Systeme : I added many personal cars you can find them in the park near bank LS . All bizs fixed and i added more . The Game is only in Los Santos.
Read More..

Vortex Roleplay 2 [MySQL, sscanf, zcmd, streamer, IRC, whirlpool]

Features

IRC system - connects to an IRC server/room and echos chat from /o to IRC and IRC to /o
MySQL saving & loading for pretty much everything
Streamed objects with Incognito's streamer
A dynamic vehicle system (not just for owned vehicles)
Vehicle ownership - players can own 1 vehicle and save mods. Destroyed vehicles respawn at a scrapyard.
Businesses (completely dynamic, 9 types - Paintball is incomplete)
Houses (completely dynamic: closets, weapon storage, money storage, etc)
The admin system (well a similarly scripted one) from the original Vortex script
Hundreds of useful commands (general commands and many other commands, scripted w/ zcmd and sscanf)
A pretty much entirely dynamic gamemode
The bog-standard hospital system that most GF servers use (yes I know it's horrid, but the people who I scripted for wanted this)
Accent system
Modshop system - charges you for mods you buy at Transfender and other modshops
Easy to follow tutorial
Hundreds of animations
Unique arrest system
Multiple faction types
Bank
Multiple jobs
0.3 colour embedding for most text relayed to clients
Whirlpool password encryption (all passwords are encrypted with Whirlpool and are unreadable to the human eye)
Read More..

Game Mode Stunt Universe v0.5

Commands:
/help
/commands
/teleports (=menu)

/dmzones
/otherzones
and many more (see /commans list)
Read More..

[GM] Raven's Roleplay [2.5b]

New Features: Login & Register Compatible with Bots; Totally re-written gun system; Totally re-written cop system; Re-written most parts of the admin script; New brand anticheat; Robbing Places; Testers; Logs; Gym; Ammunations; 3d Textdraws; New Properties; New LSPD, FBI Base & Army Base; Airport; Vehicles; New Lotto; Hydra/Hunter/Rhino/Predator Features; New SWAT,
Read More..

Download GM San Fierro Cops-Robbers-RPG v1.0

Features

- Police Officer
- /cuff (PlayerName/ID)
- /m(egaphone) (Message)
- Roadblocks
- /search (PlayerName/ID)
- /suspect (PlayerName/ID) (Reason)
- /ticket (PlayerName/ID)
- /payticket
- /pu (PlayerName/ID)
- /arrest (PlayerName/ID)
- /detain (PlayerName/ID)
- /dropoff (PlayerName/ID)
- /911 (Message) - For Civilians.
- Locked Police vehicles, interior, workable gates and security door using keypads at the garage entrance.

- Army Officer
- Working gates at entrance.
- Working vehicles including tanks.
- Extra mapped base onto the current base.
Read More..

Swat4Samp Game Mode

Features

2 Team
Swat & Terroriest

Swat Mission is defuse the bombs
Terroriest Mission is Planted the Bom

Included 5 Maps added. you can add more map easy
Have a Great Anti Cheat
Time on rounds default 10 minutes/round
Breakmap - Player can buy room and get more armor you can set it easy
- Player can buy pemanent weapons
- VIP member have special Features

Admin 4 levels.
VIP Member
Note : you must login into Rcon to setlevel and make VIP
More information you can read the readme file
enjoy

Download
Rapidshare https://rapidshare.com/files/3520902019/Swat_4_GM.rar
Read More..

Wednesday, May 25, 2011

Christmas Wars [0.3C Only]

>This is a gamemode made for christmas by kitten
>This gamemode features fallen snow from the air
>Custom Objects from SA-MP 0.3c
>Elf VS Santa
>What happens if santa wins? Christmas is going to be safe what happens if Elfs win? Christmas Will be terminated
> Limit for kills is 20 untill it announce which team wins
>This gamemode only can run in 0.3c no earlier versions of SA-MP
>Its a custom made map in the air
> Has houses
>Very good spawn points
> Santa Skin has a special feature has a santa hat also included in SA-MP new objects
> Elf Get a regular Hat special feature.
>This is a fun mode with around 6 to 10 players
>Over 200 Objects
> 2 Classes
> Santa
> Elf
> Text Draw Counter example on the pictures below will show Elf Kills: Blah Santa Kills: Blah
http://solidfiles.com/d/cfd7/
Read More..

Monday, May 23, 2011

Counter Strike DM

Counter Strike DM, is simple DM script, written from scratch, it is based on popular multiplayer game Counter Strike 1.6.

There are two teams, terrors and counters.

If you chose terrors, you will spawn with 9mm pistol, and if you chose counters you will spawn with 9mm Silence.

Don't kill your teammates because you are going to loose your kill, and rise your death points.

.:Commands:.


/b - opens buy dialog if you are in your base, where you can chose which weapon would you like to buy.
/me - shows you your stats Kill, Death and Money
/l - local chat, to chat only with your teammates.

.:Anti Cheat System:.


There is also simple anti cheat system, so nobody can not cheat, weapon, money...

.:Credits:.


CoaPsy(Me) - for writing whole script
Kyoshiro - useful function ResetPlayerWeaponEx
mabako - function strrest

Only for 0.3c

Please report any bug.

Download File
Read More..

Los Santos Gang Wars Version 2.0 RUS/ENG Version!

Los Santos Gang Wars Version 2.0 RUS/ENG Version!
http://www.megaupload.com/?d=64COVQIR
Read More..

Cops VS Terrorists v4.0

This is the Fourth version of my GameMode "Cops VS Terrorists".

Version 3.0 had a lot of bugs and now I'm happy to tell you all that
new version Is totally fixed! I've not found any bugs, but...if someone
will find one...please tell me in SA-MP Forums.


This new version (4.0) has these things:

- A simple command to get weapons ==> /weapons;
- 4 Teams (COPS and TERRORISTS);
- 11 skins: 5 terrorists and 6 cops;
- The 2 teams have he same money (Cops same money and Terrorists same Money)
i mean "TEAM MONEY".
P.S: Cops have 2 subteams=> cops and FBI. Criminals too=> Team 1 and Team 2;
- Every respawned vehicle...is payed by the Team (for example: vehicles
in the village and in area69 are payed by TERRORISTS);
- [NEW] New skins for Police and For Terrorists;
- [NEW] New Graphic Text Draws;
- [NEW] New Car Health System (ZCarHealthSystem1.0);
- [NEW] Admin System (part of Zadmin2.0);
- [NEW] 2 Car Fixers!!! One for Terrorists and one for Cops.
http://solidfiles.com/d/bb837/download/
Read More..

GangWar1.0

2.0
Whats New?
- San Fierro Gangs
- Gang Color Bug Fixed!

Downloads:

AMX:http://www.filefront.com/14004129/GangWar2.0.amx
Read More..

SAN ANDREAS MONEYGRUB + LANDGRAB + GANGS + BANKS v0.5

0.1v features:
My script take place all over the SA state (basicly - only in 3 main cities). Sort of standard MonyGrub with respawns and vehicles placed in Los Santos, Las Venturas and San Fierro... Most of the properties are considered now as 'chains'... U buy Binco shops all over SA, for example, by purchasing one. Main and the most expensive busnesses ('non-chain' like ~Alahambra Club~) are in Los Santos. Pirate Ship in LV still can be hold for money. Weapons can be purchased for respawn in San Fierro Ammu or at the huge Ammu in Los Santos.

There are only 254 vehicles avaliable on map, so thats why they are rather spread around the cities. Sorry for no vehicles in the countryside.

+ some parachute pickups and rare vehicles. Also added some additional ATM's.

0.2v features:
- replaced all the cars around (249 total cars used of 49 different types) -> !no more game crashes!
- added some boats
- added 11 more spawns in San Fierro

0.3v features:
- few more cars replaced (251 total cars used of 49 different types)
- added 1 more spawn for cops in San Fierro
- Airport fast-travel function added: NOW U CAN USE /flysf /flyls and /flylv COMMANDS AT THE AIRPORTS TERMINAL TO 'FLY' BETWEEN CITIES! TICKET PRICE IS $2500.



0.4v features:
- even more cars added and replaced - cuz some of them doesnt match with location they placed at.. (254 total cars used of 49 different types)
- added 3 new spawns in San Fierro
- ALL ATM's NOW WORK OK!
- WEAPONS CAN BE NOW PURCHASED IN NEARLY ALL 'AMUNATION' SHOPS
- +7 PROPERTIES TO BUY - some special in SF like Wang Cars, Golf Club, Hotel and Otto's Cars, Sex Shop in LV + old ones like 4 Dragons and Caligula are back)
- fixed some small bugs



0.5v features:
- hooray! even more properties all around San Andreas Kathay Chineese Theatre, Verona Mall, Zero RC Shop, Jizzy's Club
- you can now hold not only Pirate Ship in LV for money - Zombotech Corp. Lobby in San Fierro and Skyscarper Rooftop in Los Santos are avaliable to you =)
- there are two commands for properties list now: /properties showng first 8 and /properties2 last 10



THIS MODE INCLUDE ALL STANTDART MONEYGRUB FEATURES
- ATMs
- gangs stuff
- bounties
- spawnweapons
- propertys

P.S> u can find some bugs in my script so report em please!
P.S.2> Original coding by SA-MP Team, Jax. Vehicle positions originally taken from LV MoneyGrub, SF Deathmatch, LS Team Deathmatch and edited (lots of replacements) by me, Axel[Phoenix].

[size=16pt]!!PLEASE TEST MY MODE AND POST YOUR COMMENTS!!

Download it here:
RAR with PWN+AMX Rapidshare: http://rapidshare.de/files/28132315/...ub0_5.rar.html
Read More..

Clan Training / Match Script

I made this script when i was in OWN clan. But now when its dead , I decided to release it.[Edit : clan reborn but ill still share this pwn whith you . I decided to release all i have, so its mine first script ill make public.
Credits to Buffalo
+3 Clan Match/War types
---ATC/DEF/TDM[League Rules]
---Hood War
---Team DeatchMatch [tdM]
+ATC/DEF/TDM commands
---/start to start the timer[Admin only]
---/stop to stop the timer[Admin only]
---/suspend to suspend the timer[Admin only]
---/continue to continue the timer[Admin only]
---/bases to see baselist where to teleport[Admin only]
---/tdm1-6 tdm arenas
---/lv /sf /ls if theres no base in /bases list
+TDM commands
---/tdm to enter tdm arena
---/tdmscores to display tdm scores for all in SendClientMessage[Admin only]
---/resettdm to reset TDM scores to 0[Admin only]
+Hood War Commands
---/clanwar to join the arena
---/cwscores to display clanwar scores[Admin only]
---/resetcw to reset clanwar scores to 0[Admin only]
+General commands for all
---/spec /specoff spectate
---/1 /2 /3 /4 Player testing arenas 1v1
---/nvg /thg night vision , thermal heat goggles
---/help for help menu /rules for rules /leave to leave tdm clanwar or activity
+Activities which i made for fun
---/race racing in SanFierro
---/dm DM arena whith random spawn weapons on SF buildings roof
---/gungame Bugged but i hope if ull like this mod ull be able to fix it [Ingame command /level]
---/leave to leave the activity
+Admin commands
---/acommands all admin commands
[/kick /ban /freeze /unfreeze /freezeall /unfreezeall /ann /mute /sethp]
[/setname /getip /getping /unarm /unarmall /force /explode /nocash]
[/nrg /healall /armourall /goto /gethere /getallhere /jet /heli /bases]

Tip:
1. When you play ATC/DEF/TDM rules use /bases /gethere or /getallhere for easier game =)
2.If player crashed use /suspend /freezeall and when player will come back to game /sethp to restore hes old health because console will show how much hp he had.

Download Link: http://www.savefile.com/files/1500222
Read More..

San Fierro - DM

hi guys, this is my first gamemode script and my first pawno script.
my gamemode name is "SFDM : San Fierro DeathMatch"

Features
- LuxSpeedo by LuxurioN
- Score Saving System
- Skin Saving System
- Killstreak System
etc.

pic :


Download :

.pwn, .amx, plugins, and include.
click !
Read More..

OverDrive Gaming Custom DeathMatch

Due to the discontinuation of our DeathMatch server. I've decided to release it to the public for them to improve, and mess around with. It includes a few deathmatch minigames some of which are, Minigun Mishap, Rocket DM, Fist Fight, and a few more. There is a kill spree feature to. Kill sprees range from 5 to 50, upon getting a kill streak you will be rewarded a certain amount of cash to go use elsewhere. These places could be ammu-nation and more. There is an admin system with many commands. There is also a phone system, which is kinda useless... And there is also a login, register, and account saving system. Again, there are many more features than listed here. And no, I'm not posting any screen shots as I do not have the time.
Read More..

Gangs Of Los Santos Team Deathmatch

Okay so I'm all new at pawno scripting, so I decided to try it out making an simple gamemode myself.
-This gamemode consists of 5 Gangs.

-Groove Street
-Jefferson Ballas
-Northside Aztecas
-El Corona Vagos
-Los Santos Police Department


-Each base is mapped (Groove street, El Corona and so on) -With fence all the way around them, the police faction got an small simple gate which can be used by every faction using /opengate & /closegate

Its made only using the include and no streamers.

-Its an VERY simple gamemode and its properly one of the best "Newbie Scripts" -Easy to continue developing!

Bugs:
-The pawno only gives me 3 Warnings which is "Loose identitation" which can be fixed EASILY!
-I'm just too lazy to press tab on every "CreateObject" !


Download Links:

Pastebin: Click me! (PASTEBIN URL)
Read More..

DM SCript

I've had this lying around for quite awhile, almost a year to be exact. It's a bit older, but it's still really enjoyable and fun. I used to use it on my old "OverDrive Gaming" server, which is now, obviously, closed down. Anywho, here are the downloads:

http://adf.ly/1piPw
Read More..

Zombie Survival SA-MP

Description: This is a Another Zombie Gamemode i released here on SA-MP Forums but this is completely different from
my other gamemodes the reason is this gamemode is a there is Two Teams as usual Zombies and Humans
But in this is The whole map of Los Santos is filled with crashed cars barricaded Places an example is Grove
street has barricades so as los santos police department the whole map of Los Santos is an apocalypse
if you are a zombie you are able to take away from human -10 Hp every punch you hit him if you are near
the human as for humans there are less chance of surviving there isnt much cars and there is a /buy
dialog to buy weapons but you must earn more XP and Money to buy weapons zombies can be human
by getting cured in Los Santos Hospital you can find that in your map by going to the hospital icon as for
others icons are survival places when you die as a human you are 100% going to be zombie lets get to the
features for the gamemode.

Features and Commands :

- A checkpoint that gets you cured once your a zombie
- /buy is a dialog to buy weapons only for humans
- /heal for zombies and humans to heal
- /bike2 is a hidden command that isnt listed in commands list which spawns a bike for you
- /infer is a another hidden command that spawns a infernus for you
- /secretm is an hidden command that gives money
- /secretk is a hidden command that kills you
- /cmds is a command that shows you command list for the server at the moment
- /help
- /rules a list of rules for serrver
- Server has a custom feature where even a player isnt in the car the car is running its engine
- Over 1000 objects

DOWNLOAD

Read More..

Blank Gamemode | Dynamic | Uses djson

Blank | Dynamic | Uses djson

Here is this gamemode i made in a few minutes. I was bored, and well. I don't have much to say about it.

Contains:
* Uses djson to save stats
* Dynamic system - Add vehicles, map icons, 3d text labels, pickups with a command!
* Few admin commands ( Request commands if you want to )
* Set yourself to whatever admin level you want
* Dialog login - register
* Save location when you disconnect, load it when you spawn

Credits:
Y_Less - sscanf
Incognito - streamer plugin


Usage:
To run this gamemode, simple lauch samp.exe, all server files, includes, and plugins are included!


Bugs | Problems:
IF you find a bug, or a problem report it here, and for more suggestions, report it also.

New update: March 14th - Changes in GM.
Download:
Blank | Dynamic | Uses djson
Read More..

Xtreme Planet

Description
This GameMode, named Xtreme Planet, is a Stunt/Freeroam/DM/Race Server. It was made in June 2010, we got a lot of people, but it closed in September. It went up back again in March 2011, but we decided to shut it down and I decided to release it, so everyone can use it.

Commands
/t - Brings up a teleport Menu. Players can also teleport by typing the place (/minigun for example)
/v - Brings up a Vehicle Menu.
/cmds - Brings up a list of available commands. It's quickly made, so you should edit to the cmds you'll use
/skin - Type in your Skin ID from 1-299 and you'll be that character






There are more commands of course, you'll see when you download.

The Stunt Functions
Press LMB to get Nitro/NOS. Keep on pressing LMB for Speed Boost
Press 2/Submission button to hop in the air with any vehicle
Press H to flip and fix your vehicle
Press 4 on numpad to fix your vehicle

There are absolutely no timers in this script, except for Global Announcements

Teleports
There are around 35 teleports. All, except for tuning commands are in the menu (/arch, /loco, /trans aren't in).





Admin System
The server is using LuxAdmin, in my opinion, the best Admin Script out there. It's a bit modified (useless commands removed, English fixed).

To make yourself an admin, go in game, /rcon login "password" and then the second password (default "lol123", if it's not working, then it's "usasucks17" can be changed in LuxAdmin.pwn). Once you do that, /setlevel ID Level. You need to /register before.

Levels are from 1 to 6, everything works perfectly, accounts and stats save (score, kills, deaths etc.). Use /level 1 to see level 1 commands, /level 2 for 2 and so on. A lot of settings can be changed in Scriptfiles>LuxAdmin

Streamer
This GameMode uses Incognito's Streamer Plugin. Use www.convertffs.com to convert from MTA to it, or if you want to convert your current object lines to it.

Streamer works perfectly, objects get spawned quickly. There's also an example of moving objects if you search (CTRL+F) for /flyme in the script. The moving object is located in LV, the mini volcano in the desert.

But I have Linux!?
Don't worry, both plugins, Streamer and Whirlpool are .dll and .so in the Plugins map. I've ran this server on Linux and it works, perfectly.

The Hidden Race System
While the server originally didn't have races like that, I put them in for you. It's a FS made by Yagu, creating races is a piece of cake. It already loads and you can remove it from server.cfg in Filterscripts line.

Bugs
There are no bugs/glitches (knocks on wood). The only thing close to a glitch would be the unfinished solid Liberty City map, which is at like 30% with having some roads solid.

And another "problem", about the gamemode pawno file. Some teleports have bad indetation (doesnt affect gameplay or anything) because I was lazy and pissed off.

Credits
Chio (me) - Scripting everything, some maps
Hunt3rNHunt3d for little snippets
Janne & Billy/GamerX - Most of the maps
Nikobaxton, Maarten, Caspar, iTails, Doige28 for testing and helping at gameplay

Important
- No mirrors allowed! If the file isn't available then I'll upload it again.

DOWNLOAD
- XtremePlanet.rar - HotFile
Read More..

Unlimited Stunt Drag Drift

This server is created by me in totalitate.Nu I had time to put pictures with him since leaving the country. Hope you enjoy
http://solidfiles.com/d/61da0/ Download
Read More..

Las Venturas Cops and Robbers

It all started back in the middle of August, the school holidays where in full swing and here was me bored out of my brains, I had to find something to do. In the end I decided on making a brand new CnR script in Las Venturas and when it was done to be put on the hosted tab and to have a great community, as usual this did not go to plan. I had many exams which slowed me down on scripting but at the time of January / February I finished the script off and had it hosted, without the hosted tab. As I'm only 15, a boy without a job, where would I get the money from to pay for the host and bills, luckily Pghpunkid had a server and allowed me to run it on his server (Thanks mate).

With not many people joining the server I knew it was down to the hosted tab, I had to find money to place it on the hosted tab, but without me working and no income coming in, I had no money to pay for it. I decided that I would not be using it's full advantage and I decided to put it for sale for $60. Even though this mode had many nice features, no one was intrested in the price. So I decided to lower it to $40. In the end I sold the script to Mr Tom Lee Fox. A known scammer. Luckily he paid the full 40 dollars and I gave the script out, I told him that I can not guarantee that this script will not be released at a later date, later on after months went past, I saw that their server had closed and that no one was using it. So here I am releasing the script today so many people can use it to their full advantage! I've worked long and hard on this script and all I ask is that you keep my name in the credits on the document and on /credits.

http://uploadir.com/u/7uy415
Read More..

PEN:LS - MySQL version | RL-RPG script

Introduction

After 4 years of being developed and after having major changes, by allot of persons it was about time to make it available for everyone! Pugs Real Life RPG script.

About

The base script of RL-RPG script is PEN:LS by Astro ( Denver ), we have updated it has the time demands, it haves some unique features and its mostly MySQL based!
Due to being an older script you might find bugs in it and there might be bugs that are not possible to fix without re-coding some parts of the code.

Features

- Police Garage with gate in Los Santos LS:PD
- Advanced MySQL feature to add cars with one ingame command Spawn Car added
- Advanced MySQL feature to add houses ingame with one command
- Advanced MySQL feature to add gates ingame with one command
- User accounts saved in MySQL
- Bans saved in MySQL
- All users that join ingame IPs saved in MySQL for better administration
- Basic anti cheat
- Advanced donator system, with their own chat!
- Most of the codes from original PEN:LS are completely re-coded.
- Idle kicker
- Unique gang System with restricted colors and classes
- Unique service System with restricted colors and classes
- Gang Head Quarters

Credits

Scripting

- Astro / Denver
- Pug ( Peter )
- Redgie ( Dunk )
- MrDutch ( Alex )
- Jim


Special Thanks

- Littlewhitey ( Owner of GTA-HOST )
- damospiderman ( SA-MP BETA TESTER )
- Wes_FR ( RL-RPG Player )
- Ben ( RL-RPG Player )
- Bernardo ( I HAD TO INCLUDE MYSELF :P )
- Micheal ( RL-RPG Player )
- Maxwell ( RL-RPG Player )
- Woet ( serverFFS owner )
Read More..

World Stunting V1.3.5

Commands:
/cmds To See Player Commands
/teles To See Server Teleports
/rcmds Rcon Commands
/help To see help
/rules To See Server Rules
/kill to Kill Your Self
/shop To Purchase items

Version V1.3.5 With New Features !

From Solid Files Download !
From Media Fire !


Version V1.3.1
Bug Fixed !
SolidFiles WorldSU
MediaFire V1.3.1
New Version V1.3

Download:
SolidFiles
MediaFire
Pastebin

Note: New V1.4 Soon Realese ! (Development)

Also Thanks To Zeex for Zcmd
Thanks to Y_Less for sscanf
Thanks to Luxurion for LuxAdmin
Thanks to SA-MP Community

BetaTester of this GameMode
Sunmil , Singam , King , Willian , Harini_Asin

And Thanks To All..

Download
V1.2
http://www.solidfiles.com/d/d19fa/
Read More..

Terrorists-Versus-Army

Hello everyone, this is my second release!.
This is an Team DeathMatch Gamemode which is Terrorists Versus Army. This is basically about Terrorists attacking the Army using teamwork while Army attacks Terrorists using their teamwork etc.
Skins:



On the skin selection, you'll see what team a skin is in.! So it'll show in your screen either green-coloured " Army " or a Red-coloured "Terrorists".

HQs;

Army.
Terrorists.

Here is the download link: http://www.mediafire.com/?fp7s5jcfh6oaspu
Read More..

Xtreme planet gamemode.

Friend ask me if I delete plugins and edit gamemode in Xtreme planet gamemode.
I delete plugins because most hostings not allowed plugins.
DOWNLOAD HERE!
Read More..

XtreamGaming - [TDM/DM/Stunts/Race]

Xtream Gaming server was started out on 16/01/2011. Later i found myself too busy for running a server and later i decided to give it away. This script is made by me from scratch and i have also used 1-2 maps from some mappers. But rest things are scripted by me. Well this was basically my first gamemode, no its second, I lost my first one

Few Features:-
» Neons for every vehicle. (/neon)
» Car controls. (/vcontrol)
» Some great maps. (/teles)
» Car Menu for spawning cars. (/carmenu)
» Car tuner. (/cartune)
» Weapon laser. (/laseron)
» You can buy weapons, made from dialogs (/buyweapons)
» Lots of dialogs used.
» Area51 TDM which includes 2 Teams. military and terrorists. (/area51)
» Totally unique script made from scratch.
» A great map (/skydrag) This map is made by me its basically a straight highway made in sky and is very long so we can enjoy the real drag racing fun. That place also got a disco/bar (img 2) and some other few mapped objects.
» The only thing is that i am using the admin script of other. Not created by me as i ran out of time due to my school work.
.
Read More..

Welcome Serious RolePlay

-----FACTIONS-----
1- Police (LS/LV)
2- Medics (LS/LV)
3- Fire dept. (LS/LV)
4- Gov (LS)
5- Army (LS)
-------------------
-------GANGS------
6- Ballas Gang (LS)
7- Groove Street (LS)
8- Los Mexicanos (LV)
9- Street Racers (LV)
Read More..

Moderntopia RolePlay: Los Santos MYSQL Plugin R5

Introduction

Moderntopia is a new multigaming community focusing on providing game servers for a range of games. We have a number of experienced scripters and some nice ideas to implement at a later date in future projects. If you would like to learn more, please visit our website http://www.moderntopia.com/ and get in touch with the community. Note: We are not planning to leave SA-MP just yet, there are still quite a few ideas we're going to try out.
Read More..

Team deathmatch

Well hello everyone.
First of all i have to tell you all i have been studding the "Pawn" scripting language,
Since i felt it was working out okay for me i wanted to learn some scripting.
As of what i have done now is pretty simple for all of you since it is a basic script.
I made a little Deathmatch / Team deathmatch i would rather call tdm.
well it would go as following

This is a GM with 5 teams : Grove , Ballas , Vagos , Hells Angels , Bloods
Each team have one HQ , Territory , Cars and Weapons.

With a few basic commands,
/kill /myscore /team
/ad /setscore /kick /ban

Hope you guys will enjoy!
Pastebin:
http://pastebin.com/RyrK0f0j
Read More..

Deadly Combinations A/D

Deadly Combinations is a feature packed attack & defend gamemode created by Raekwon and Devastator. The development of this gamemode started around December 2007, as a training mode for [KR] clan members. Deadly Combinations is now the most complete and feature packed A/D gamemode ever released with over 25,000 lines of code.

This gamemode has many advanced features not found in other gamemodes like a MySQL OR INI based data system (you can use either one), and external expansion.
Read More..

ßlodZ's RolePlay Winter Edition

Gamemode is created from scratch by scripter Radu he failed to finish all the gamemode accommodate lack of time.
Is beginning a gf
Read More..

Los Santos Gang Wars

Commands
/gang [create/join/invite/quit] ../gangs /gbalance /gbank /gwithdraw
/ganginfo [numeris] /bounty /bounties /hitman /[un]lock
/purchase /callmycar /proeprties 1-2 / buy
/users /buylevel /level /resetvisitors /givecash /bank /withdraw /balance
/givecash /bank /withdraw /balance
/buyweapon [weap number] /weaponlist /flysf /flyls /flylv
Deatchmatches: /join [PvP , Ship , Barricades]
[/size]
Read More..

Saturday, April 23, 2011

What the hect Stunt

Commands:
/help
/tele - /teles - /teleport - /teleports
/rules
/credit - /credits

Rcon Only:
/oa <-- Open admin gate
/ca <-- Close admin gate

/odm <-- Open DM gate
/cdm <-- Close DM gate

/od Opens the door to the admin house
/cd Closes the door to the admin house

/ogd Opens grarge door (At admin house)
/cgd Closes grarge door (At admin house)

Teleports:
/wang - /wangcars
/arch
/locolow
/DM -- With guns New armour and health
/DM[2-5] -- With guns New armour and health
/lvap
/classic
http://pastebin.com/3Fc2u3PJ
Read More..

Zombie-Mod 2 + Ranks [ unfinshed ]

This is zombie-mod 2 not version 2 but it contiunes i was working on this but i stopped developing it because i'm really busy with work and school so i want to release this for others who like zombie mod but this is unfinshed does not have maps this is like starting a zombie-mod fresh but this includes lot of features + admin system

FEATURES

>Admin system
>Teams
Zombies:
1. Regular Zombie
2. Hunter ( Features high point jump )
3. Charger ( dunt added powers to this zombie )
Humans:
1. Regular Human ( aka civilian )
2. Medic ( power is that he can heal people )
3 . Army ( dunt added powers to this human )
> Weapons:

http://solidfiles.com/d/0788/
Read More..

Public Enemy: Desert

Hi guys,

long time I've got thank about it, now I've decided to release this Script.
It's a modified Public Enemy by Denver(Astro) with many new Features.

I've added some Menus (like in /upgrade) and some other Features.
It was hard work to make this Gamemode, but now I'm not scripting so often.
Attention: The complete Gamemode is in German. I don't know if i shall make a English Version, too.

Download:

Read More..

Search And Destroy

ABOUT THE SCRIPT.


Well, I have been scripting on this over the weeks, but I only managed to fit in like, 2 hours of work altogether, and I came up with this game mode, because I haven't seen one around.

MAP.


It is a custom mapped area, and it is based upon the area 51 section of the map.

THE GAMEMODE.


The game mode itself is based on timers, and text draws, it has a lot of text draws on it, for the things involved in it, there is a countdown timer for when somebody plants the bomb, it counts down from 30, to 0, and when it hits 0, there is an explosion, and then after 3 seconds or so, the players will be set to re-spawn.

TEAMS.


There is two teams, Army and Gang, there is 2 cars for each gang, for the army, there is 2 patriots, and for the gang, it is 2 burritos.

ADMIN SCRIPT.


There is NO admin system in this, so I am sorry to tell you, either use the RCON, or use a different filterscript for it.

HELP ME?


All that I ask you is, if you find any bugs, or want anything adding, I will see if I can do it, and think about it,

Enjoy, and please, keep all credits to me! Except, Incognito's for the streamer.


Thank you all for looking here, enjoy it.

DOWNLOAD LINKS:
http://www.4shared.com/file/IJTgJkQF/server.html
Read More..

Protect the Prime Minister v4 & v5

This GameMode was not started from scratch, although it was a big edit HUGE.
Anyways this gamemode was based off of Protect the President v3 by Ez (is included in credits).- Credits are at bottom of page.
- Release Date: 3/27/2011


Introduction:
This is a Team Death Match Server.
The original PM Server was not created by me, anywho in this server there are a few new classes:
Anyways let's get started. There are 8 Classes: Prime Minister, Vice Minister, Security, Army, Swat, Police, Terrorist, and Civilian. The classes are separated into colors: Yellow (PM and Vice-PM), Green (Security and Army), Blue (Police and Swat), Red (Terrorist), Orange (Civilian)


New classes that were not in original PTPM:
1. Vice Minister (New)
2. Security (was Bodyguard - name changed)
3. Army (New)
4. Swat (New)
5. Terrorist (was Pyscho - name changed)
6. Civilian (New)


Duties:
Prime Minister = Try to survive for 15 minutes.
Vice Minister = Take place of Prime Minister if Vice Minister dies.
Security = Protect the Prime Minister.
Army = Protect the world from war.
Swat = Work with the police and Protect the PM.
Police = Work with the Swat Team and Protect the PM.
Terrorist = Kill everyone, try to kill the Prime Minister before the 15 minutes are up.
Civilian = Just be a regular person/pedestrian and create equalize in the server.


New Maps:
In the original Protect the PM, there was only one map 'Las Venturas', well now this GM contains 4 new maps!
The new 4 maps are: Las Venturas, Los Santos, San Fierro, and West Venturas.
In Ez's Version these were four maps, but I created new spawns, cars, objects, and pickups.
These are the boundaries for my version:
download http://www.mediafire.com/?6x0bcytwlai1bh1
Read More..

Wednesday, March 23, 2011

Real-Life Stunting v4.5

Real-Life Stunting

Info

Real-Life Stunting, combines RolePlay with Stunting, Racing, DeathMatching and Freeroam. I think the combination is pretty good made.

Features

An older version of my Real-Life Stunting. This is v3.2, currently i have v4.5, but this is cool too.
It has Properties ( thnx to Sandra ).
It has Houses ( thnx to Wadabak ).
It has own Admin System ( edit of Andre's v0.7 )
It has jobs ( thnx to me )
And many other features like AntiFall, Bigjumps, Stunts and many more, you just have to read /help /commands /jobs.
Also, you have to download & have fun, else ill use /ban on you xD.

Bugs

I dont remember major bugs or so...
Also the objects distance is around 110, so it wont crash so easy ( the server ).

Download

Real-Life Stunting v4.5
Read More..

MG3's Crazy StuntZ Version 2 released

What does it include?
  • Multi-language-system (German+English)
  • A lot of maps and objects
  • Adminsystem+Registrationsystem
  • Very much funny commands like setting own skin or weather
  • Menu-system for vehicles (Double-O-Vehicles)
  • Modding vehicles with commands (fully auto-tuning with mods for every vehicle which is available in menues)
  • DM+TDM
  • Hidden money-pickups
  • Anticheat-system

Objectstreamer is MidoStream by MidoBan. It's a little bit modified (virtual worlds added to the object-check).
It's needed for /pro world without objects and for DM+TDM.

What do you have to do, when you download it?
  • Read my comment on the top of the script
  • Read /credits in the script

Visit:
  • 93.90.177.183:9100 to check out MG3's Crazy StuntZ on a running server
  • 85.93.15.236:9200 to check out San Andreas Deathmatch
  • www.MG3-Clan.com

So, have fun with it!

DOWNLOAD (.pwn+.amx+includes+MidoStream)
Read More..

ZCops_VS_Criminals

This gamemode is my Best Gamemode i've ever created. It's been really hard to create.
I've spent so many days to make it, test it and fix a lot of bugs. There were really
a lot because it's my first Gamemode in this MODE and i wasn't an expert.

To use this Gamemode you don't need to install anything.
But there is an application (like in my WFM gamemode) called "SAMP_SERVER.exe".
It's the file you have to start for GM. it's better than original "samp-server.exe"
because if you have a server Crash, it will restart automatically!!!

In ZCops Vs Criminals there are 4 aviable missions for CRIMINALS.
2 ROBBERIES,
1 Car Steal,
1 Secret Documents steal.

In this server we need a simple system for a good BALANCE of COPS and CRIMINALS.
It works good, so Can't be too many cops or too many Criminals.
There are 4 "teams":
- Police;
- S.W.A.T;
- FBI;
- ARMY;
- CRIMINALS.
Criminals can't drive cops vehicles (cops=police,swat,fbi,army).

>HOW TO MAKE YOURSELF ADMIN:
To make yourself admin in this Gamemode you have to do the following things:
- register: /register [password]
- login as RCON ADMIN: /rcon login [password]
- type command /makemegodadmin
NOW you're admin level 10 (the highest).
to see all aviable Admin Commands use command /acmd

>HOW TO MAKE SOMEONE ADMIN:
To make someone admin, you have to use a simple command:
/makeadmin [id] [level]
EXAMPLE: i'm ADMIN and i want to make admin level 4 a friend.
My friend has ID:9 so i'll tipe the following command: /makeadmin 9 4
Now my friend is ADMIN level 4. (but he MUST be registered before using that cmd).

---------------------------------------------------------------------------------------------------------

>CONNECTION IN SERVER:
When you join in server, the first thing you have to do is Choose your language:
- Italian
- English
I'm sorry but i don't know other languages well.
All texts in server will be written to a in the language he has choosen.
(except only some texts like the REPORT TO POLICE and RADIO CRIMINAL).

>COMMANDS IN SERVER:
For all commands you have to type this: /cmds
You'll see a cmdlist.
There are also other commands about server: /help and /info
But when you join for the first time, you could type /tutorial.
It's an antumatic Description and you'll understand all about server.

One of the particular commands is /savepersonalvehicle.
If you're registered and you use it in a vehicle, you'll save that vehicle as PERSONAL.
When you connect in server, your vehicle will be CREATED.
When you Disconnect, it will be Destroyed.
If you want to save an other vehicle, you cant do it! But you can REPLACE it typing this cmd:
/replacevehicle

---------------------------------------------------------------------------------------------------------

>CAR SHOPS:
There are 3 car shops in this gamemode:
* CAR SHOP NORMAL:
It sells 4 cars:
- Savanna
- Broadway
- Feltzer
- Slamvan

* CAR SHOP SUPER
It sells 5 Sport Cars:
- Infernus
- Banshee
- Turismo
- Bullet
- ZR-350

* CAR SHOP PRO:
It sells 14 vehicles (3 cars and 11 bikes):
- Manana
- Perennial
- Esperanto
- NRG-500
- FCR-900
- PCJ-600
- Go kart
- Faggio
- Sanchez
- Freeway
- Quad
- Bike
- BMX
- Mountain Bike

---------------------------------------------------------------------------------------------------------

>ADMIN COMMANDS:
This is the list of aviable admin commands in GM:
- /acmd ==> shows admin cmds list
- /reports => shows the last report (used by players with command /report [id] [reason]
- /spec [id] => enables SPECTATING MODE on a player.
- /specoff => disable SPECTATING MODE.
- /getip [id] => gets IP and last names of a player.
- /mute [id] [minutes] => mutes a players for minutes (min=1; max=10).
- /unmute [id] => unmutes a muted player.
- /kick [id] [reason] => kicks a player!
- /ban [id] [reason] => bans a player!
- /jail [id] => jails a player.
- /unjail [id] => unjails a player.
- /freeze [id] => freezes a player.
- /unfreeze [id] => unfreezes a player.
- /goto [id] => teleports you to a player.
- /get [id] => teleports to you a player.
- /die [id] => kills a player.
- /makeadmin [id] [level] => makes a player admin.
- /cchat => clears chat window.
- /makemegodadmin => makes you admin LVL 10! (only if you're logged as RCON ADMIN).

- /zvhealth => modifies Vehicle Health System options.

---------------------------------------------------------------------------------------------------------

>GANG ZONES:
There are some gang zones:
They are all Mision Zones, Car Shops Zones, Cops Zones.

---------------------------------------------------------------------------------------------------------

>PARTICULAR INNOVATIONS:

* THE BEST SCRIPRING IN GAMEMODE:
The best thing i've made in this gamemode is BUSTING system for COPS.
If you know NEED FOR SPEED, when police is catching you, you see your "BUSTED" line.
When it's FULL you're BUSTED! I've made the same thing in this Gamemode!!!
The criminals see the "BUSTED" line and COPS see a GameText when they are catching you!
This system had a lot of bugs originally, so i had to work a lot to fix them.
Now it's PERFECT!

* TAXI SYSTEM:
I've built a good TAXI SYSTEM with 6 stops:
- Car shop 1;
- Police Station;
- Bank;
- Car Shop 2;
- Airport.
Taxi is driven by BOTS! there are 30 recordings only for this system!
When you enter in a taxi, you'll see a DIALOG. In this dialog there are
the 6 destinations! You select your destination and Taxi will take you there!
It tells you also how much time it takes.

* BANCOMAT SYSTEM:
There is also a simple BANCOMAT SYSTEM.
You can save all your money there! If someone kills you, you lost ALL YOUR MONEY!
But you'll not loose saved money in BANCOMAT!
To go to the Bancomat, you have to enter in mini-checkpoint in front of BANCOMAT.
To see an example of BANCOMAT, look description with command /tutorial.
Bancomat places are 5:
- Bank;
- Police Station;
- Airport;
- Railway Station;
- Palace near WANG CARS (car shop1).
BANCOMATS are shown with this ICON in MAP:
Read More..

Stage Set Las Venturas

INTRODUCTION

Hello guys, I have finally decided to release my stage set las venturas script to the public, as I have been away from long time, I thought i might release away even this script. This is the last ever script I made at sa-mp, and it was a real serious project. I did have enough players but was out of budget and intrest, to keep up.
So anyway this script wasnt designed to be released so some parts of the script were not really dynamic. I dont even remember the script good today, as its been long time. But still I will try to help u guys if theres a problem with it. And thanks a lot to Retardedwolf for helping me assembling the code.

FEATURES

Mail Box
Starting with the mail box system, this is a unique system where every house or room has got its own mail box. Whenever a player does /checkmails a list of his new mails appears. He can do /readmail to read the mails. Once you do /readmail your mail wont appear in /checkmails, as only new mails(unread mails) appear in /checkmails. Though u can still do /mymails to see a list of your mails.
You generally get a mail when u join a job, resign, buy car, house, room etc.

Houses
Houses are almost the same, you can /leave to exit your house. You can do /spawnhere to change your spawn to that current house. /heal to heal yourself. They can also be sold using /sellhouse. Every house has a car parking slot outside its house, where only you can park your cars.

Motels
Every motel willl have number of rooms, you can rent a room. Renting a room costs you some rent per day, which will be taken every day from your bank account, dont worry a mail will be sent to you about it.

Parkings
Every buycar needs to be parked at some parking. There are many parking slots available in the server where you can just do /park to park your vehicle.

Bank
All the 24-7's in LV are your ATM's. You can get in them and do /withdraw, /deposit, /balance. You can also check all the statements of your bank account using /balance.

Gold System
Gold rates keep changing everyday. gold miner could sell gold they collected at the fixed gold rate to players. Players can purchase gold and keep it with them and trade it away to the market when the gold rate is too high, to earn profits.

Drug System
There are many drug tree around LV. A drug dealer can plant seed at those trees. Once a drug seed is planted, it grows drugs continuously. Drug dealer can come back and collect his drugs from that plant. If some other drug dealer find your drug plant, he can remove the plant and plant his own or also can take away drugs from there.

Gym System
People can go to gym and workout there. They increase there stamina. If they increase their stamina, they feel less hungry.

Horseshoe System
There are upto 100 hidden horseshoes around Las Venturas(extended). If you find all of them you will be alloted Horseshoe Prize.

Fuel System
Different vehicle models have different vehicle fuel capacities. And you can decide how much fuel to put into your vehicle at the petrol bunks.
You can also transfer fuel from one car to other car.

still job ranks, levels, playing points etc systems exists, they could be easily understood so they are not explained,

INSTALLATION
Follow these simple steps
1. Copy and save the code as sslv.pwn in ur gamemodes folder.
2. Download StrickenKid Mysql Plugin.
3. Extract them to your samp folder.
4. Compile, and makesure you are out of warnnings and errors.
5. You need to install 'MySQL' in your system( google 'xampp' or 'wamp' ).
6. Create a database named 'kapilsslv'.
7. Add a new mysql user for that database, named 'kapil' , password 'lol'.
8. Run the server for the first time and makesure, and wait for the script to create all the tables etc.
9. Now close the server, and add yourself into 'admins' table, with adminlevel 7, which is the highest level.
10. Run your server again, and thats all!
http://notesbin.com/1255515878
Read More..

Carlito's Roleplay

Dynamics: The script is completely dynamic, meaning we can set every single thing that you see ingame with a simple command. No restarts needed for anything at all a part from main script changes. This makes for better roleplay experience and all round effectiveness.

Business System: Each business has a business type assigned to it, every type gets different commands, so again it will make for a better roleplay experience. Currently there are 7 types of business.

Phone Networks: Much like real life, when you get a simcard and you top it up. The money from phone calls and text messages goes to that network. It's the same in the script, you buy phones from businesses that are phone networks and all money from calls and text messages goes straight into that businesses till. This is a feature i wanted to create from day one as i think it's great.

Advertisements: Unlike most roleplay scripts, to do an advertisement you must be in an advertisement business, there are several spread out throughout the city and are all player-owned.

Car System: I've decided not to add player-owned vehicles as of yet, it's easily done and will be added in the future if the playerbase is ok. At the moment the car system enables administrators to park vehicles, change models/colors etc. Also set factions to cars.

House System: House system is just like any other house script, you can buy,sell,rent. Only difference in mine is that you can store up to 2000 materials and 500 grams of drugs in your house. But be aware, the police can raid houses.

Faction System: Much like any other faction system, except factions can be created ingame with simple administrator commands.

Vehicle Engine System: Our vehicle engine system is very simple, like most others. Fuel will not go down in vehicles unless the engine is turned on and if the engine is turned off you will be froze until you exit the vehicle (Hit Enter) or start the vehicles engine. Fuel will go down if the vehicles engine is on and the vehicle is unoccupied, for a more realistic feel.

Vehicle Lock: We do not use vehicle params for our vehicle lock system, we use custom vehicle checks. If you lock a car, it's not only locked for everyone else besides you, it's also locked for you! If you want to unlock, you must stand beside the vehicle.

Serverside Money: This makes spawning money, IMPOSSIBLE. Which means we can be sure that all our players money was earned.

Pickup Streamer: We can have up to 30000 pickups, this makes for stability when adding large amounts of houses.

Jobs:
Arms Dealer: as the title suggests, you will be selling firearms if this is your job.
Drug Dealer: Your job will be to earn money supplying drugs to the city.
Detective: You will be able to find people, if they have there phones switched on.
Lawyer: You will be able to get justice for those wrongly imprisoned, and set them free.
Products Seller: You will supply products to business owners.

And more, check the script.http://nornweb.co.cc/files/CRP_03_C.rar
Read More..

Stunting Galaxy DM/RP/Stunts/FreeRoam]

Stunting Gods


Hi guys, This is my first GameMode That i have actully made. The reason im releasing it is because i don't have time to host it or manage it anymore, There are no bugs that i am currently aware of and if there is it isn't major so you would be able to fix it yourself.

Sorry i couldn't put up screenies, Because for some reason the fixtures just come out pitch black. But ill Try yo describe it as Detailed as i can. But if someone who downloads it and takes screenies for me that would be very much appreciated

Stunts-
You have Stunts throughout the Game,
More teleports at /teleports or more detailed with over 50 stunts /stuntingZones
Theres a variety of stunts from Hardcore loop action with monster trucks, infernus and sand-kings
Nrg parkours, Massive half pipe and much more i just can't remember.

DM's
Best Dm's in samp history, From our famous GlassMadness all the way to our Island TDM
You spawn with no Weapons so you can't dm out of DM zones,
You automatically spawn to the start of the DM when you die.

Systems
-Maths and Reaction tests
-Garsinos House system and i have made custom maps throughout the game
-Ramping system, Just press ALT and a ramp will spawn infront of you
-Speed Boosting system
-Ryders Race system
-Chat Bot, automatically replies to its name and sentences that you configure (Small bug, it changes id 1's name to id 0's name
-Lotto System (It works, just needs some text to aware you when you can buy tickets
-spectate system with /spec id
-Lux Admin system with over 150+ cmds

I haven't had time to update /rules /teles and more but its simply fixed with a some time.

Player Cmds
/rules /Teles /cmds /fix /flip /nrg /carmenu and alot more

Admin Cmds
Level 1: Basic Moderator

Player: getinfo, weaps, ping, ip,
Vehicle: fix, repair, addnos, tcar
Tele: saveplacae, gotoplace
Adm: onduty, saveskin, useskin, dontuseskin, setmytime, adminarea
Other: lconfig, viplist, morning, reports, richlist, miniguns

Level 2: Moderator

+ Level 1 commands.
Player: giveweapon, setcolour, burn, spawn, disarm, highlight, jetpack, flip, fu
Player: warn, slap, (un)mute, laston, lspec, lspecoff
Vehicle: acar, abike, aheli, aboat, aplane, lspecvehicle
Tele: goto, vgoto, lgoto
Adm: lmenu, clearchat, write, announce, announce2, screen, (un)lockcar
Other: wanted, jailed, frozen, muted, fstyles

Level 3: Master Moderator

+ Level 1 and 2 commands.
Set: set(health/armour/cash/score/skin/wanted/name/weather/time/world/interior/ping/gravity)
All: setallskin, armourall, setallskin, setallwanted, setallweather, setalltime, setallworld
All: setallscore, setallcash, giveallcash, giveallweapon, clearallchat, healall, disablechat
Player: ubound, duel, akill, aka, caps,(un)freeze, kick, explode,(un)jail, force, eject, (s)removecash
Vehicle: car, carhealth, carcolour, destroycar, vget, givecar
Tele: teleplayer, gethere, get, move, moveplayer
Other: gps, lcam, setpass, lammo, countdown, aweaps, invisible, visible

Level 4: Administrator

+ Level 1,2 and 3 commands.
All: spawnall, muteall, unmuteall, getall, killall, freezeall, unfreezeall
All: kickall, slapalll, explodeall, disarmall, ejectall
Player: cage, ban, rban, tempban, settemplevel, crash
Adm: ctele, lockserver, enable, disable, spam, god, godcar, botcheck, forbidname, forbidword, fakedeath
Other: uconfig, die, hide, unhide

Level 5: Master Administrator

+ Level 1,2,3 and 4 commands.
+ Level 5 is Immune for all commands
Player: setlevel, fakechat, fakedeath, fakecmd
Adm: god, sgod, console
Other: pickup, object, respawncars
Rcon: lrcon (Only Rcon Admins) (Use: /rcon lrcon)
In RCON you can add houses with /createhouse but you have to be logged into RCON

Maps
I would like to thank Fallout on letting me use his maps and all the players that joined me and helped me making even more maps



Download-
HTML Code:

http://adf.ly/EyJi
Read More..

Gamer Stuntages V1









-------------------
About server:

- Lux Admin system
- xObjects
- Teleports
- Server 0.3c system
- Car Menu dialog
-------------------


Download:


2shared
Read More..

Wednesday, February 23, 2011

Grand Theft Heli (Helicopter)

Description: This is a gamemode based on 2 teams Attackers and Defenders the team defenders have to defend the the helicopter for limited time of 5 minutes to win and attackers there objective is that they have to steal the helicopter return it to the spawn before time is up (5 min) and win its basically TDM with objectives

Pictures:


Attackers Return Helicopter Checkpoint:


Attackers Spawn:


Defenders Spawn and helicopter to defend:


Download :

http://pastebin.com/wb50ie35
Read More..

Monday, February 21, 2011

Grand Theft Auto San Andreas Cheats Codes (Gta SA Cheat)

This is Grand Theft Auto: San Andreas Cheats, Grand Theft Auto: San Andreas Cheat Codes, Grand Theft Auto: San Andreas Hints, Grand Theft Auto: San Andreas Secrets.

Type these codes in during gameplay.

* SPEEDFREAK: All Cars Have Nitro
* NIGHTPROWLER: Always Midnight
* FLYINGFISH: Boats Fly
* BUBBLECARS: Cars Float Away When Hit
* STATEOFEMERGENCY: Chaos Mode
* BLUESUEDESHOES: Elvis is Everywhere
* SPEEDITUP: Faster Gameplay
* CRAZYTOWN: Funhouse Theme
* ONLYHOMIESALLOWED: Gang Members Everywhere
* BIFBUZZ: Gangs Control the Streets
* ROCKETMAN: Have Jetpack
Read More..

Shelby GT500 car sounds for Gta SA

Shelby GT500 car sounds created & made for GTA SA by Garthknight08
Shelby GT500 car sounds created & made for GTA SA by Garthknight08

All sounds ripped from existing material for perfect match.
Sounds mixed & cleaned using audio software.
I found that using Alci's SAAT is the best way to install sounds.
If you have any questions or requests email supermanbegins08@yahoo.com
ALWAYS BACK UP YOUR FILES BEFORE INSTALLATION TO REVERT BACK!
Read More..

Skin gta BMW 550i 2010

Skin gta BMW 550i 2010
New Skin for gta BMW 550i 2010
Read More..

Vehicles New Kart Skin

Vehicles New Kart Skin


A new skin for the Kart. Also comes with a Vehicle.txd file for other vehicles. Features include:

- Grunge removal
- New environment/reflection map textures
- Better shattered glass
- Overhauled license plate character set
- Improved dash gauges
- Restored missing Kart number plate
- Includes Karts location map
- V1.2 update adds 4 new skins and enables in-shop changes
Read More..

KNIGHT 3000 sounds made for GTA SA by Garthknight08

KNIGHT 3000 sounds

All sounds ripped from existing material for perfect match.
Sounds mixed & cleaned using audio software.Sounds made to overwrite bfinjection & bandito but can be used for any car you choose except bandito horn sounds.
Read More..

Helicopter Skin Gta dragonfly heli

Helicopter Skin Gta dragonfly heli
This model is a replacement for the Sea Sparrow helicopter in GTA-San Andreas. The original was long overdue for a change! The Dragonfly has the following features:

- Primary/secondary color usage. The floats can be a separate color.
- Custom collision and shadow.
- Detailed interior design and textures. Full instrumentation on console & pedestal panels. Extras like seat belts, a fire extinguisher and other accessories.
- Working Omni lights on the belly and tail.
Read More..

Vehicles Bus Skin New

Gta Vehicles Skin Bus

Vehicles Skin Bus download here
Read More..

San Andreas Mod Installer (SAMI) (V1.1) Download

San Andreas Mod Installer (SAMI) (V1.1) DownloadDescription:
Here is the San Andreas Mod Installer, also known as Sami. This will allow you to install mods and custom vehicles made for GTA San Andreas without having to edit the game files yourself. The San Andreas Mod Installer will do this work for you. This program will make it a lot easier to install modifications as these will only require a few clicks.
Read More..

New Great Effects Mods free Download

New Great Effects Mods free Downloadby :SAK_KING_OF_SA
This new version includes totally improoved effects and now totally new effects, a new system (rain reaction system) and 4 ways to install it you can choose: HQ (High quality), MQ (Medium quality), LQ (low quality) or NQ (No quality) installation.
Read More..

Filterscripts [FS] House System

Name: Simple House System

Files:
aHouse.pawn
aHouse.amx

by Antironix

Info:
On a day i've maded my self a house system, but for twenty lines for each house, i started to make a simple system that will add a house with one line. And voila, i have created it.
Non bought houses are locked!
Read More..

Filterscripts [FS] Property system

Finally, a property-system made by me that DO save the properties when you disconnect or when server restarts
My previous system was an include, this one is a filterscript.

It saves all properties in 1 file and it is easy to use because you don't have to use all kind of difficult functions.

Features:

* Unlimited properties
* Saves property-owners even when server restarts.
* Mini-account system
* Simple Mini-map streamer (only 1 mapicon (closest property) visible)
* Easy to use
Read More..