Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - mrockxkingbutt

Pages: 1 ... 3 4 [5] 6 7 ... 25
61
Stormeus Has Received Best Scripter ( Senior ) . Award/Debut . Congratulations Stormeus. Keep Up The Good Work

Stormeus Has Won By 7 Votes

62
Snippet Showroom / Re: [FUNCTION] ProxDetectorS
« on: March 21, 2014, 05:50:08 pm »
I still dont get it

Go Buy A New Brain First!

GTFO you 10 years old angry piece of crap. God damnit I have no words to express how fucking much stupid you are

I still dont get it

Go Buy A New Brain First!

GTFO you 10 years old angry piece of crap. God damnit I have no words to express how fucking much stupid you are
Ill make some words for you:
Gothafagokin: Stupidity of the world
Garmingofgathagin: Stupidity of the universe

@Nesk

can't even see the difference between 10 & 13 . how stupid is this crap .
Nasty SHit Of Pig!

NE.Restricted

Get The Fuck Out Of Here Swine!

63
General Discussion / Resolved: ~STormeus~
« on: March 21, 2014, 04:10:03 pm »
Thanks Stormeus!

64
Snippet Showroom / Re: [FUNCTION] ProxDetectorS
« on: March 21, 2014, 04:08:55 pm »
I still dont get it

Go Buy A New Brain First!

65
ShowRoom (pawn) / Re: [Released] Zombie Invasion
« on: March 20, 2014, 05:07:14 pm »
Yes seby made is awesome but more awesome if you make another one

Learn from this one, and create your own zombie server, with an original idea. ;)



By the way, thanks to all !

seby you added every thing related to it . what can we add in our zombie city? even if we make our own that will be not better than you

66
mIRC/pawn Scripting / Re: How to make seprate weapons for player
« on: March 20, 2014, 12:41:44 pm »
onplayer spawn

if(classid == 1) {
SetPlayerWeapon,playerid,wep,ammo,
SetPlayerWeapon,playerid,wep,ammo,
SetPlayerWeapon,playerid,wep,ammo,
SetPlayerWeapon,playerid,wep,ammo,



If You Added

AddPlayerClassEx(1.etc);


it will work like this!

67
ShowRoom (pawn) / Re: [Released] Zombie Invasion
« on: March 20, 2014, 11:58:55 am »


January 20,2012 >> Last News << Only a few people survived this malicious attack and now they are making crews to kill everything that has been infected by this virus




This gamemode is a copy of one of the most real apocalyptic servers from SA:MP (PA-RP - The Walking Dead
I like(d) the server so much: factions, walkers (aka zombies), crashed city, places where you could hide etc. so I made a "low-cost" version for VC:MP to show to all players a real Zombie server
:D


I decided to release it because I'm not using it anymore and I couldn't get a host at it's time. (no Romanian host for VC:MP)
It may be bugged, by my mistakes or by Pawn functions but it should work okay
:)

This mode is about surviving: you have to search for weapons on abandonated shops, make a team and kill zombies, protect each other etc.
The key of survive is to find a good enough car to can move faster, but be careful, walkers can destroy a car's tires
;p

You can find more info here: http://zombie-invasion.hitforum.ro/t5-zombie-invasion-v10-mod-infected-rpg-public

// If you are zombie and want to be human, kill 5 humans and type /c human
By the way, this isn't all, go and discover yourself
:D


I have to say Thank You to 763 players that registered on my server, thanks for the good times :)
Special thanks to Cpt.ViceCity and VCS for being active admins on the server, and I have to say sorry because I kept it opened just for some months.



Abandonated Zombie Invasion Forum:  http://zombie-invasion.hitforum.ro/



Seby Your Script Is mOst Awesome!!!!!!!!!!!

68
General Discussion / Re: ~STormeus~
« on: March 19, 2014, 07:39:06 pm »
Thats Mean Storm DENIED your request

Then why he doesnt reply his messages saying that he denied? Btw I like how that guy is trolling mrockx by posting his (mrock's) scripts with credits removed. Ye thats worst but kinda funny

he is maybe busy in other life problems

!+++

Quote
I m Not Sure ! I Hate Indians . But I THink I Do Like TO Add You In Indians List!
If You Know What I Mean!

69
Snippet Showroom / Re: [FUNCTION] ProxDetectorS
« on: March 19, 2014, 02:32:08 pm »
Prox  = Distance!

70
General Discussion / Re: ~STormeus~
« on: March 19, 2014, 12:23:26 pm »
Thats Mean Storm DENIED your request

there is no reason for that!

there are evidence of my script that he stolen and remove credits . why he didnt remove it

when others do that he will remove his script / other script !

See The Rule!

Quote from: stormeus

Do NOT claim other people's scripts to be yours.

Copy-and-pasting code without giving credit, or modifying a gamemode so that your name shows up instead of the original author's, is breaking the basic forum rules
. Also, don't post SA:MP filterscripts or gamemodes and say they will work for VC:MP. They won't work for VC:MP. They have to be converted.

71
Hey !

I Created A Most Advance Bomb System!

Credits Me


Add This

Code: [Select]
new Bomb[MAX_PLAYERS];
new Bombed[MAX_PLAYERS];
new Cracker[MAX_PLAYERS];
new Defused[MAX_VEHICLES];

onplayerentervehicle
Code: [Select]
if(Bombed[vehicleid] == 1) {
PutDirectlyInVehicle(playerid,vehicleid);
SendClientMessage(playerid,COLOR_RED," The Vehicle You have Entered Has Been Bombed ");
GameTextForPlayer(playerid," Bomb Planted ");
SetVehicleHealth(vehicleid, 100);
Bombed[vehicleid] = 0;
}

OnPlayerCommandText

Code: [Select]
else if(strcmp(cmd,"buybomb", true) == 0) {
new tmp[123];
tmp = strtok(cmdtext,idx);
if(Bomb[playerid] == 1) SendClientMessage(playerid,COLOR_RED," Already Have A Bomb ");
else {
if(!strlen(tmp)) {
Bomb[playerid] = 1;
SendClientMessage(playerid,COLOR_GREEN," You Have Bought The Bomb ### ");
}
}
return 1;
}

else if(strcmp(cmd,"plantbomb", true) == 0) {
new tmp[123];
tmp = strtok(cmdtext,idx);
if(Bomb[playerid] == 0) SendClientMessage(playerid,COLOR_RED,"Dont Have A Bomb");
else if(Bombed[GetPlayerVehicleID(playerid)] == 1) SendClientMessage(playerid,COLOR_RED," Bomb Already Planted ");
else if(!IsPlayerInAnyVehicle(playerid)) SendClientMessage(playerid,COLOR_GREEN," Not In Vehicle ");
else {
Bomb[playerid] = 0;
Defused[GetPlayerVehicleID(playerid)] = 1;
SetTimer("BombTime", 100000, 0);
Bombed[GetPlayerVehicleID(playerid)] = 1;
SendClientMessage(playerid,COLOR_RED," Bomb Has Been Planted ");
}
return 1;
}

else if(strcmp(cmd,"buycracker", true) == 0) {
if(Cracker[playerid] == 1) SendClientMessage(playerid,COLOR_RED," You Already Have Cracker ");
else {
Cracker[playerid] = 1;
SendClientMessage(playerid,COLOR_RED," Cracker Has Been Bought Do /c defuse ");
}
return 1;
}

else if(strcmp(cmd,"defuse", true) == 0) {
if(Cracker[playerid] == 0) SendClientMessage(playerid,COLOR_GREEN," Not Have Cracker ");
else if(!IsPlayerInAnyVehicle(playerid)) SendClientMessage(playerid,COLOR_RED," Not In vehicle ");
else {
if(Defused[GetPlayerVehicleID(playerid)] == 1) {
Cracker[playerid] = 0;
Bombed[GetPlayerVehicleID(playerid)] == 0;
RemovePlayerFromVehicle(playerid);
SetVehicleHealth(GetPlayerVehicleID(playerid),1000);
GameTextForPlayer(playerid," Bomb Defused ");
}

if(Defused[GetPlayerVehicleID(playerid)] == 0) {
Bombed[GetPlayerVehicleID(playerid)] == 1;
GameTextForPlayer(playerid," Bomb Defusing Failed ");
}
}
return 1;
}
 


Timer & Stock
Code: [Select]
forward BombTime();
public BombTime() {
for(new i ; i <MAX_VEHICLES;i++) {
if(Bombed[i] == 1) {
if(Defused[i] == 1) {
Defused[i] = 0;
}
}
}
return 1;
}

Features Of It!

Bomb Can Be Defusable
Bomb Can't Be Defused After 100 Seconds Of Planting BOmb
Bomb Can Be Bought
Bomb Can Be Planted
Need A Cracker To Crack The Bomb


72
ShowRoom (pawn) / Re: Robbers and cops city By Me
« on: March 19, 2014, 09:19:11 am »
COps And RObbers City.. Fake Version Of My Server Code

Code: [Select]
#include <a_vcmp>
#include <dini>

#define GameModeName "Robbers and cops city"
#define GameModeAuthor "Rohanaj60"

static szGameModeName[ 11 ] = "Robbers and cops city";
static szGameModeAuthorName[ 23 ] = "Rohanaj60";
[b]// Note DOnt Change MY Credits Or Your Script Got Bugged[/b]
its not his script

#define COLOR_GREY 0xAFAFAFAA
#define COLOR_GREEN 0x33AA33AA
#define COLOR_RED 0xAA3333AA
#define COLOR_YELLOW 0xFFFF00AA
#define COLOR_WHITE 0xFFFFFFAA
#define COLOR_MAIN 0xFFFFFFAA


#pragma unused ret_memcpy

new PlayerName[MAX_PLAYERS][MAX_PLAYER_NAME+1];
new Status[MAX_PLAYERS];
new Bomb[MAX_PLAYERS];
new RaceComplete[MAX_PLAYERS];
new Race_Ar[MAX_PLAYERS];
new BankRobbed[MAX_PLAYERS];
new SecretPickup[MAX_PLAYERS];
new PlayerKill[MAX_PLAYERS];
new Kill_Ar[MAX_PLAYERS];
new Bomb_Ar[MAX_PLAYERS];
new Final_Ar[MAX_PLAYERS];

new jMessages[][] =
{
"    Welcome To Our Server ",
"    Visit Us At Blacklagon.createaforum.com ",
"    Scripted By : Rohanaj60 ",
"    Use /c cmds to see availaible CMD ",
"    [GameMode] Robbers and cops city ",
"    Specify A Job Cop Or Robber "
};
forward SendMessages();
public SendMessages() {
new ro = random(sizeof(jMessages));
SendClientMessageToAll(COLOR_GREEN,jMessages[ro][ro]);
return true;
}

#define PI  3.1415926535897932384626433832795

//------------------------------------------------------------------------------------------------------
public OnPlayerCommandText(playerid, cmdtext[])
{
new idx,cmd[256];
cmd = strtok(cmdtext,idx);
printf("%s 's CMD %s", PlayerName[playerid], cmd);

if(strcmp(cmd,"script", true) == 0) {
SendClientMessageToAll(COLOR_RED," Robbers and cops city : Scripted By Rohanaj60");
return true;
}
else if(strcmp(cmd,"missions", true) == 0) {
SendClientMessageToAll(COLOR_RED," === Missions List ===");

SendClientMessageToAll(COLOR_RED," 1 : Enter In Race And Win");

SendClientMessageToAll(COLOR_RED," 2 : Rob The Bank");

SendClientMessageToAll(COLOR_RED," 3 : Kill 3 Peoples");

SendClientMessageToAll(COLOR_RED," 4 : UnLock 5 Archeivements");

SendClientMessageToAll(COLOR_RED," 5 : Find The Secret Pickup In Mansion");

return true ;
}
else if(strcmp(cmd,"cmds", true) == 0) {
SendClientMessageToAll(COLOR_RED,"(/c) script, info, forum, heal, arm, stunt, boost, funmodeon, funmodeoff, missions, list, bank, mansion, airport, downtown, malibu, army");
return true;
}
else if(strcmp(cmd,"list", true) == 0) {
if(Race_Ar[playerid] == 1) SendClientMessage(playerid,COLOR_RED," You Have [ Racer #1 Archeieve ]");
else if(Final_Ar[playerid] == 1) SendClientMessage(playerid,COLOR_RED," YoU Have [ Final Archeievement ");
else if(Kill_Ar[playerid] == 1) SendClientMessage(playerid,COLOR_RED," You Have [ Kill 3 In A Row ] Archievement");
else if(BankRobbed[playerid] == 1) SendClientMessage(playerid,COLOR_RED," You Completed [ Bank Job ]");
else if(Bomb_Ar[playerid] == 1) SendClientMessage(playerid,COLOR_RED," You Have [Found The Bomb] Archievement ");
else if(RaceComplete[playerid] == 1) SendClientMessage(playerid,COLOR_RED, " You Completed The Race ");
else {
SendClientMessage(playerid,COLOR_RED," You havent, COmplete Or Found Anything ");
}
return true;
}
else if(strcmp(cmd,"info", true) == 0) {
SendClientMessageToAll(COLOR_RED,"== Server Info == ");
[b]SendClientMessageToAll(COLOR_RED,"== Owner : ManiMrockx == ");[/b]
SendClientMessageToAll(COLOR_RED,"== Forum : None == ");
SendClientMessageToAll(COLOR_RED,"== Type : Basical == ");
return true;
}
return true;
}

stock FindPlayerIDFromString(playerid,string[])
{
new Player = 255, i = 0, MessString[STR];
while (i <= MAX_PLAYERS){if(strfind(PlayerName(i),string,true) != -1){Player = i;break;}i++;}
if (Player == 255)
{
if ( (strlen(string) > 2) || (!IsNumeric(string)) )
{
format(MessString,sizeof(MessString),"Unable to find %s",string);
SendClientMessage(playerid, COLOR_MAIN, MessString);
return 255;
}
Player = strval(string);
}
if (!IsPlayerConnected(Player))
{
format(MessString,sizeof(MessString),"Playerid %d Not Connected",Player);
SendClientMessage(playerid, COLOR_MAIN, MessString);
return 255;
}
return Player;
}

forward CheckHacks(playerid); // my function
public CheckHacks(playerid)
{
new Float:Arm , Float:Heal;
if(GetPlayerHealth(playerid,Heal)) {
if(Heal > 101) {
Kick(playerid);
SendClientMessage(playerid,COLOR_RED," [Auto-Kick] Reason [ Health Hacks ]");

if(GetPlayerArmour(playerid,Arm)) {
if(Arm > 101) {
Kick(playerid);
SendClientMessage(playerid,COLOR_RED," [Auto-Kick] Reason [ Armour Hacks ]");
}
}
}
return 1;
}
return 0;
}

My Script

Quote
Features List!

Quote

    Archeievements ( Means You have To unlock Them TO COntinue To Missions )
    Missions ( Complete Missions )
    Jobs ( have 2 Jobs Cops And RObbers )
    Teleports ( Have Simple Teleportion )
    Commands ( Have Many Commands )


Missions== Complete The Race ==
== Rob The Bank ==
== Kill 3 Peoples ==
== Unlock 5 Archeievements ==
== FInd Secret Pickup At Mansion ==

Commands

Quote

    (/c) boost , stunt, info, forum, malibu, bank, army, mansion, airport, downtown, list, missions . there is more basic cmds you can read in server


Download Links!!
V5
http://speedy.sh/KvNVW/Missions-Crime-City.zip ( Mirror 1 )
http://www.mediafire.com/download/j5k4bh2ri2ms4ot/Missions_+_Crime_City.zip ( mirror 2 )
Modify message
« Last Edit: March 12, 2014, 11:17:44 AM by mrockxkingbutt »

Codec

Code: [Select]
new PlayerName[MAX_PLAYERS][MAX_PLAYER_NAME+1];
new Status[MAX_PLAYERS];
new Bomb[MAX_PLAYERS];
new RaceComplete[MAX_PLAYERS];
new Race_Ar[MAX_PLAYERS];
new BankRobbed[MAX_PLAYERS];
new SecretPickup[MAX_PLAYERS];
new PlayerKill[MAX_PLAYERS];
new Kill_Ar[MAX_PLAYERS];

new Bomb_Ar[MAX_PLAYERS];
new Final_Ar[MAX_PLAYERS];

new jMessages[][] =
{
"    Welcome To Our Server ",
"    Scripted By : ManiMrockx ",
"    Use /c cmds to see availaible CMD ",
"    Specify A Job Cop Or Robber "
};
forward SendMessages();
public SendMessages() {
new ro = random(sizeof(jMessages));
SendClientMessageToAll(COLOR_GREEN,jMessages[ro][ro]);
return true;
}

#define PI  3.1415926535897932384626433832795

main()
{
print("\n----------------------------------");
print("\n Scripted by");
print("\n ManiMrockx");
print("----------------------------------\n");
}

//------------------------------------------------------------------------------------------------------
public OnPlayerCommandText(playerid, cmdtext[])
{
new idx,cmd[256];
cmd = strtok(cmdtext,idx);
printf("%s 's CMD %s", PlayerName[playerid], cmd);

if(strcmp(cmd,"script", true) == 0) {
SendClientMessageToAll(COLOR_RED," Missions v3.7 : Scripted By Manimrockx");
return true;
}
else if(strcmp(cmd,"missions", true) == 0) {
SendClientMessageToAll(COLOR_RED," === Missions List ===");

SendClientMessageToAll(COLOR_RED," 1 : Enter In Race And Win");

SendClientMessageToAll(COLOR_RED," 2 : Rob The Bank");

SendClientMessageToAll(COLOR_RED," 3 : Kill 3 Peoples");

SendClientMessageToAll(COLOR_RED," 4 : UnLock 5 Archeivements");

SendClientMessageToAll(COLOR_RED," 5 : Find The Secret Pickup In Mansion");

return true ;
}
else if(strcmp(cmd,"cmds", true) == 0) {
SendClientMessageToAll(COLOR_RED,"(/c) script, info, forum, heal, arm, stunt, boost, funmodeon, funmodeoff, missions, list, bank, mansion, airport, downtown, malibu, army");
return true;
}
else if(strcmp(cmd,"heal", true) == 0) {
SetPlayerHealth(playerid, 100);
SendClientMessage(playerid,COLOR_RED," You Have Been Healed");
return true;
}
else if(strcmp(cmd,"arm", true) == 0) {
SetPlayerArmour(playerid, 100);
SendClientMessage(playerid,COLOR_RED," You Have Been Armored ");
return true;
}

else if(strcmp(cmd,"stunt", true) == 0) {
EnableStuntBike(playerid,1);
SendClientMessage(playerid,COLOR_RED," You Have Been Stuntize ");
return true;
}
else if (strcmp(cmd, "bank", true) == 0)
{
    SetPlayerPos(playerid, -885.5430,-340.5070,11.1034,0,0);
    SendClientMessage(playerid,COLOR_RED," Teleported To Bank ");
return 1;
}
else if (strcmp(cmd, "mansion", true) == 0)
{
    SetPlayerPos(playerid, -378.5339,-515.2870,12.8109,0,0);
        SendClientMessage(playerid,COLOR_RED," Teleported To Mansion ");
return 1;
}

else if (strcmp(cmd, "airport", true) == 0)
{
 SetPlayerPos(playerid, -1432.1119,-817.5270,14.8715,0,0);
      SendClientMessage(playerid,COLOR_RED," Teleported To Airport ");
return 1;
}

  else if (strcmp(cmd, "downtown", true) == 0)
{
 SetPlayerPos(playerid, -670.4264,607.2902,11.0845,0,0);
      SendClientMessage(playerid,COLOR_RED," Teleported To Downtown ");
return 1;
}
else if (strcmp(cmd, "army", true) == 0)
{
 SetPlayerPos(playerid, -1718.1532,-245.1667,14.8683,0,0);
      SendClientMessage(playerid,COLOR_RED," Teleported To Army ");
return 1;
}
  else if (strcmp(cmd, "malibu", true) == 0)
{
 SetPlayerPos(playerid, 495.7786,-83.4285,10.0299,0,0);
      SendClientMessage(playerid,COLOR_RED," Teleported To Malibu ");
return 1;
}
else if(strcmp(cmd,"boost", true) == 0) {
SetGamespeed(233);
SendClientMessage(playerid,COLOR_RED," You Have Been Boosted ");
return true;
}
else if(strcmp(cmd,"funmodeon", true) == 0) {
EnableStuntBike(playerid,1);
SetGamespeed(233);
SetGravity(7);
Taxiboostjump(1);
SendClientMessageToAll(COLOR_RED," Fun Mode Is Activated ");
SendClientMessage(playerid,COLOR_RED," Fun Mode Enabled For Free ");
return true;
}
else if(strcmp(cmd,"funmodeoff", true) == 0) {
EnableStuntBike(playerid,0);
SetGamespeed(100);
SetGravity(100);
Taxiboostjump(0);
SendClientMessageToAll(COLOR_RED," Fun Mode Is Off ");
SendClientMessage(playerid,COLOR_RED," Fun Mode Disabled ");
return true;
}
else if(strcmp(cmd,"list", true) == 0) {
if(Race_Ar[playerid] == 1) SendClientMessage(playerid,COLOR_RED," You Have [ Racer #1 Archeieve ]");
else if(Final_Ar[playerid] == 1) SendClientMessage(playerid,COLOR_RED," YoU Have [ Final Archeievement ");
else if(Kill_Ar[playerid] == 1) SendClientMessage(playerid,COLOR_RED," You Have [ Kill 3 In A Row ] Archievement");
else if(BankRobbed[playerid] == 1) SendClientMessage(playerid,COLOR_RED," You Completed [ Bank Job ]");
else if(Bomb_Ar[playerid] == 1) SendClientMessage(playerid,COLOR_RED," You Have [Found The Bomb] Archievement ");
else if(RaceComplete[playerid] == 1) SendClientMessage(playerid,COLOR_RED, " You Completed The Race ");
else {
SendClientMessage(playerid,COLOR_RED," You havent, COmplete Or Found Anything ");
}
return true;
}
else if(strcmp(cmd,"info", true) == 0) {
SendClientMessageToAll(COLOR_RED,"== Server Info == ");
SendClientMessageToAll(COLOR_RED,"== Owner : ManiMrockx == ");
SendClientMessageToAll(COLOR_RED,"== Forum : None == ");
SendClientMessageToAll(COLOR_RED,"== Type : Basical == ");
return true;
}
else if(strcmp(cmd,"forum", true) == 0) {
SendClientMessageToAll(COLOR_RED,"== none == ");
return true;
}
return true;
}
public OnPlayerConnect(playerid)
{
new fl[123];
GetPlayerName(playerid,PlayerName[playerid],MAX_PLAYER_NAME);
SetWaterLevel(6.0);
SetGamespeed(100);
SetGravity(100);
GameTextForPlayer(playerid,"Welcome");
format(fl,sizeof(fl)," %s Has Connected Successfully ! Welcome TO Server ", PlayerName[playerid]);
SendClientMessageToAll(COLOR_RED,fl);
SetPlayerMoney(playerid,0);
SetPlayerMoney(playerid,0);
SetPlayerMoney(playerid,0);
SetPlayerMoney(playerid,0);

printf("%s Has Joined", PlayerName[playerid]);

CheckHacks(playerid);

if(IsNumeric(PlayerName[playerid])) { // anti-nick-numeric
Kick(playerid);

new d[123];
format(d,sizeof(d)," %s Has Been Kicked [ Reason ] [ Number Cannot Be A Nick ]");
SendClientMessageToAll(COLOR_RED,d);
}

return true;
}

//------------------------------------------------------------------------------------------------------

public OnPlayerDisconnect(playerid, reason)
{
new rea[123];
switch(reason) {
case 1: rea = "Leaving";
case 2: rea = "Kicked/Ban";
case 3: rea = "Timeout";
}

GetPlayerName(playerid,PlayerName[playerid],MAX_PLAYER_NAME);
new fl[123];
format(fl,sizeof(fl)," %s Has DisConnected ( %s )", PlayerName[playerid], rea);
SendClientMessageToAll(COLOR_RED,fl);

printf("%s Has Left Reason %s", PlayerName[playerid], rea);
return true;
}

//------------------------------------------------------------------------------------------------------

public OnPlayerEnterVehicle(playerid,vehicleid,ispassenger)
{
GetPlayerName(playerid,PlayerName[playerid],MAX_PLAYER_NAME);
new fl[123];
format(fl,sizeof(fl)," %s Has Entered In A Vehicle! ID %d", PlayerName[playerid], vehicleid);
SendClientMessageToAll(COLOR_RED,fl);
printf("%s Has Enter Vehicle ID %d ", PlayerName[playerid], vehicleid);
return true;
}

//------------------------------------------------------------------------------------------------------

public OnPlayerSpawn(playerid,classid)
{

SendClientMessage(playerid,COLOR_RED," Use /c missions to see mission s");
SendClientMessage(playerid,COLOR_RED," First mission Race With Bikes To Malibu");

GetPlayerName(playerid,PlayerName[playerid],MAX_PLAYER_NAME);

new fl[123];
format(fl,sizeof(fl)," %s Has Spawned ", PlayerName[playerid]);
SendClientMessageToAll(COLOR_RED,fl);

if(classid == 0) {
Status[playerid] = 1;
SetPlayerWeapon(playerid,21,2000);
SetPlayerWeapon(playerid,32,2000);
SendClientMessage(playerid,COLOR_RED," Spawned As COP ");
}
if(classid == 1) {
Status[playerid] = 2;
SetPlayerWeapon(playerid,20,2000);
SetPlayerWeapon(playerid,27,2000);
SendClientMessage(playerid,COLOR_RED," Spawned As Theif ");
}

printf("%s Has Spawned", PlayerName[playerid]);

return true;
}

//------------------------------------------------------------------------------------------------------

public OnPlayerDeath(playerid, killerid, reason)
{
Status[playerid] = 0;
GetPlayerName(playerid,PlayerName[playerid],MAX_PLAYER_NAME);
new fl[123];
format(fl,sizeof(fl)," %s Has Killed %s .", PlayerName[killerid], PlayerName[playerid]);
SendClientMessageToAll(COLOR_RED,fl);

printf("%s Has Killed %s ",PlayerName[killerid], PlayerName[playerid]);

PlayerKill[killerid]++;
PlayerKill[playerid] = 0;

if(PlayerKill[killerid] == 3) {
Kill_Ar[killerid] = 1;
SetPlayerMoney(killerid,250000);
SetTimer("Archeievement", 20000, 0);
SendClientMessage(killerid,COLOR_RED," You UnLocked A Archeivement [ Kill 3 In A Row ]");
}
return true;
}

//------------------------------------------------------------------------------------------------------

public OnPlayerRequestClass(playerid, classid)
{
printf("%s 's Class %d ", PlayerName[playerid], classid);
switch(classid)
{
case 0:GameTextForPlayer(playerid,"~b~COP");
case 1:GameTextForPlayer(playerid,"~h~Robber");
}
return true;
}
public OnPlayerText(playerid, text[])
{
printf("%s 's Text %s", PlayerName[playerid], text);
return true;
}

public OnPickedUp(pickupid,playerid) {
GetPlayerName(playerid,PlayerName[playerid],MAX_PLAYER_NAME);
if(pickupid == 1) {
Bomb[playerid] = 1;
Bomb_Ar[playerid] = 1;
SetPlayerMoney(playerid,10000);
SendClientMessage(playerid,COLOR_RED," You Got The Bomb");
}
if(pickupid == 2) {
if(Bomb[playerid] == 0) SendClientMessage(playerid,COLOR_RED," You Dont Have A Bomb Goto AmmuNation And Get The Bomb ");
else if(Status[playerid] == 1) SendClientMessage(playerid,COLOR_RED," You Cant Rob Bank Because YoU Are A Cop ");
else if(RaceComplete[playerid] == 0) SendClientMessage(playerid,COLOR_RED," You Have,nt Completed The Race Yet Do It First ");
else {
Bomb[playerid] = 0;
BankRobbed[playerid] = 1;
SetPlayerMoney(playerid,100000);
SendClientMessageToAll(COLOR_RED," Bank Has Been Robbed ");
SendClientMessage(playerid,COLOR_RED," Robbed The Bank ");
}
}
if(pickupid == 3) {
new sz[123];
SendClientMessage(playerid,COLOR_RED,"You Won!");
GameTextForPlayer(playerid,"Misson Completed");
RaceComplete[playerid] = 1;
Race_Ar[playerid] = 1;
SetPlayerMoney(playerid,150000);
format(sz,sizeof(sz)," %s Won The Race . And Unlocked A Archeivement [ Racer #1 ]", PlayerName[playerid]);
SendClientMessageToAll(COLOR_RED,sz);
}
if(pickupid == 4) {
if(Race_Ar[playerid] == 0) SendClientMessage(playerid,COLOR_RED," You Dont Have A Racer_Archeivement . Go WIn The Race First ");
else if(BankRobbed[playerid] == 0) SendClientMessage(playerid,COLOR_RED," You haven,t Robbed The Bank Yet ");
else if(Kill_Ar[playerid] == 0) SendClientMessage(playerid,COLOR_RED," You Dont Have [ Kill 3 In A Row ] Archeivement Get It First ");
else if(Bomb_Ar[playerid] == 0) SendClientMessage(playerid,COLOR_RED," YoU Dont Have [ Bomb Planting ] Archeievment ");
else if(Final_Ar[playerid] == 0) SendClientMessage(playerid,COLOR_RED," You Dont Have [ FOund All Archeivemeent ] Complete Missions To Get It");
else {
SendClientMessage(playerid,COLOR_RED," You Found THe Mansion Secret Pickup !");
GameTextForPlayer(playerid," Mission Complete ");
SecretPickup[playerid] = 1;
SetPlayerMoney(playerid,300000);
}
}
return 1;
}
stock FindWepIDFromString(string[])
{
new MessageString[STR];
new match = 0;
new p = 0;
while (p < MAX_WEAPONS) { if (strfind(gWeapons[p],string,true) != -1) { match=p;break; } p++; }
if (match == 0) {
if ((strlen(string) > 2)  || (!IsNumeric(string))) {
format(MessageString,sizeof(MessageString),"Unable to find weapon %s.",string);
SendClientMessageToAll(COLOR_MAIN, MessageString);
return false;
}
match = strval(string);
}
if ((match < 1) || (match > 33)) {
format(MessageString,sizeof(MessageString),"Invalid Weapon ID %d.",match);
SendClientMessageToAll(COLOR_MAIN, MessageString);
return false;
}
return match;
}
/*
stock FindVehIDFromString(playerid,string[])
{
new MessageString[256];
new VehID = 0;
for(new i; i <= 107; i++)if(!strfind(VehiclesNames[i],string,true))VehID = (i += 130);
if (VehID == 0)
{
if ((strlen(string) != 3)  || (!IsNumeric(string)) )
{
format(MessageString,sizeof(MessageString),"Unable to find vehicle %s.",string);
SendClientMessage(playerid,COLOR_MAIN,MessageString);
return false;
}
VehID = strval(string);
}
if ((VehID <= 130) || (VehID >= 237))
{
format(MessageString,sizeof(MessageString),"Invalid Vehicle ID %d.",VehID);
SendClientMessage(playerid,COLOR_MAIN,MessageString);
return false;
}
return VehID;
}
*/

stock IsNumeric(const string[])
{
for (new i = 0; i < strlen(string); i++)if(string[i] > '9' || string[i] < '0') return false;
return true;
}

forward Archeivement();
public Archeievement()
{
for(new i ; i <MAX_PLAYERS;i++) {
if(Kill_Ar[i] == 1) {
if(Bomb_Ar[i] == 1) {
if(BankRobbed[i] == 1) {
if(Race_Ar[i] == 1) {
SendClientMessage(i,COLOR_RED,"You UnLocked An Archeievment [ Found All Archeievements ]");
GameTextForPlayer(i," Mission Complete ");
Final_Ar[i] = 1;
SetPlayerMoney(i,9999999999999999999);
}
}
}
}
}
return true;
}

forward CheckHacks(playerid);
public CheckHacks(playerid)
{
new Float:Arm , Float:Heal;
if(GetPlayerHealth(playerid,Heal)) {
if(Heal > 101) {
Kick(playerid);
SendClientMessage(playerid,COLOR_RED," [Auto-Kick] Reason [ Health Hacks ]");

if(GetPlayerArmour(playerid,Arm)) {
if(Arm > 101) {
Kick(playerid);
SendClientMessage(playerid,COLOR_RED," [Auto-Kick] Reason [ Armour Hacks ]");
}
}
}
return 1;
}
return 0;
}




73
General Discussion / Re: ~STormeus~
« on: March 19, 2014, 09:13:35 am »
i do sended messages and reports 5 times no answer  :'( :'( :'( :'( :'( :'(

74
ShowRoom (pawn) / Re: Robbers and cops city By Me
« on: March 19, 2014, 09:11:03 am »
The Evidences Of This Script!


From The FIle ReadMe!
From The Script Missions Script & Cops And Robbers City

Quote
Emergency Case !

Pls Change The Rcon Password To be Safe From Hackers

in Case Of Hackers Use
/admin your_admin_Password_Here

use /getip ID
then use /ban ip

in case of other emergency contact me!

[email protected]
[email protected]
[email protected]
[email protected]
[email protected]

visit us at r2xdhoom3.createaforum.com

See SnapShoots For Locations Of Archeivements ANd Missions

Uploaded At

SpeedyShare.com

Posted At :
forum.vicecitymultiplayer.com

Thanks : maniMrockx .

Credits : Mani Mrockx [Jimx]

Evidence Picture




75
General Discussion / ~STormeus~
« on: March 19, 2014, 09:01:09 am »
http://forum.vicecitymultiplayer.com/index.php?reportsent;topic=6634.msg38656#msg38656

Remove The Link &n Topic

He Stolen My Script!
added his own credits
ands rename gamemode and saying i edited it. so i am now the owner so i removed your credits.

remove it pls stormeus!

Every evidence is in the topic

Pages: 1 ... 3 4 [5] 6 7 ... 25