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 - heekz.shadow

Pages: 1 ... 6 7 [8] 9 10 ... 16
106
Snippet Showroom / Re: Buy weapons in all Ammu-Nation
« on: December 03, 2012, 06:26:26 pm »
Quote
   new mon = GetPlayerCash(playerid)-amount;
    format(INFO,256, REGISTERS, gPlayers[playerid]);
   dini_IntSet(INFO, "Cash", mon);
   SetPlayerMoney(playerid,mon);

dude, where is INFO defined, also, what's the point of writing into a file which will never be used ( he is clearly not using GUPS ).

107
Snippet Showroom / Re: Anti Insult System.
« on: November 28, 2012, 03:17:57 pm »
.tk isn't an insult its a Domain name and that's advertising and instead of kicking the user try this so you don't loose members to your server
[pawn]
    for(new i = 0; i < 100; i++)
    {
        SendClientMessage(i, -1, "");
    }
[/pawn]

Thanks genius, I never know.

sarcasm

108
Videos and Screenshots / Re: VC:MP with NPCs / Bots ( NOT FAKE )
« on: November 26, 2012, 06:49:15 pm »
More!





109
mIRC/pawn Scripting / Re: Help: how to add cars on any place i want ?
« on: November 26, 2012, 05:48:04 pm »
That's wrong, BadCivil. The saved coords were meant to be used for mIRC scripts. In order to add a car at a desired place, you must take the coordinates: x, y, z from the vc-mp_saved_coords.txt and then place them in this order:

AddStaticVehicle( model, x, y, z, angle, colour1, colour2 );

Note: -1 at colour1 and colour2 is not a mistake, it means the script shall choose a random color from the carcols.dat.

110
Videos and Screenshots / VC:MP with NPCs / Bots ( NOT FAKE )
« on: November 25, 2012, 07:44:18 pm »
It's not fake, it's just possible :).









PS: No, it's not VCA, you can ask Murdock and Zeke.

111
General Discussion / Re: 0.4 question to the community
« on: November 25, 2012, 05:29:39 pm »
If you use your imagination, you can lots and lots of things. Also, you can go for Squirrel Servers if you moan that much about the bugged function VC:MP Pawn has, and you can even script C++ Modules.

112
delete
Quote
PlayerInfo[playerid][pAdmin] != 0
because not everyone has that..

113
So you erased the topic to remove the genial idea of showing people's password !?

114
General Discussion / Re: new GameMode - coming soon
« on: November 12, 2012, 05:31:10 pm »
> it's a free multiplayer modification
> claims it's a scam

lol

those guys...

115
Snippet Showroom / Re: Hello guys! Caesar salad for all!
« on: November 10, 2012, 07:06:38 pm »
His ideas are unique, yours are not ( aledark24 ). It's not about buying food, but actually having more choices than pizza,coffee... etc..

No. I am not stupid.

116
Snippet Showroom / Re: Complete Food system by aledark24
« on: November 10, 2012, 07:04:30 pm »
Poor english, rest is decent.

117
Snippet Showroom / Re: Hello guys! Caesar salad for all!
« on: November 10, 2012, 09:16:56 am »
I made a full RPG system with everything, containing EMP and police spikestrips being thrown out of the car, we do not care about you aledark24. This is his topic, we shall support him.


This is a nice script :)

118
General Discussion / Re: new GameMode - coming soon
« on: November 09, 2012, 04:16:17 pm »
This guy doesn't even know what he has in his script..

Now I will post the code from the .pwn

Code: [Select]
/* Position Saver
 *
 *www.vcmpteam.tk
 */

public SavePlayerClass(playerid)
{
new string[128];
new Float:X, Float:Z, Float:Y, Float:Rotation;

        GetPlayerPos(playerid, X, Y, Z);
        GetPlayerFacingAngle(playerid, Rotation);

        new File:pos=fopen("positions.txt", io_append);
        format(string, 256, "AddPlayerClass(0, %f, %f, %f, %f, 0,0,0,0,0,0);", X, Y, Z,Rotation);
        fwrite(pos, string);
        fclose(pos);
}
public SavePlayerClassEx(playerid)
{
new string[128];
new Float:X, Float:Z, Float:Y, Float:Rotation;

        GetPlayerPos(playerid, X, Y, Z);
        GetPlayerFacingAngle(playerid, Rotation);

        new File:pos=fopen("positions.txt", io_append);
        format(string, 256, "AddPlayerClassEx(0, 0, %f, %f, %f, 0,0,0,0,0,0);", X, Y, Z, Rotation);
        fwrite(pos, string);
        fclose(pos);
}
public SavePickupPos(playerid)
{
new string[128];
new Float:X, Float:Z, Float:Y;

        GetPlayerPos(playerid, X, Y, Z);

        new File:pos=fopen("positions.txt", io_append);
        format(string, 256, "AddStaticPickup(0, 0, %f, %f, %f);", X, Y, Z);
        fwrite(pos, string);
        fclose(pos);
}
public SaveStartPos(playerid)
{
new string[128];
new Float:X, Float:Z, Float:Y;

        GetPlayerPos(playerid, X, Y, Z);

        new File:pos=fopen("positions.txt", io_append);
        format(string, 256, "SetPlayerStartPos(%f, %f, %f);", X, Y, Z);
        fwrite(pos, string);
        fclose(pos);
}
public SaveCameraPos(playerid)
{
new string[128];
new Float:X, Float:Z, Float:Y;

        GetPlayerPos(playerid, X, Y, Z);

        new File:pos=fopen("positions.txt", io_append);
        format(string, 256, "SetCameraPos(%f, %f, %f);", X, Y, Z);
        fwrite(pos, string);
        fclose(pos);
}
public SaveCameraLookPos(playerid)
{
new string[128];
new Float:X, Float:Z, Float:Y;

        GetPlayerPos(playerid, X, Y, Z);

        new File:pos=fopen("positions.txt", io_append);
        format(string, 256, "SetCameraLookAt(%f, %f, %f);", X, Y, Z);
        fwrite(pos, string);
        fclose(pos);
}

Now, if blains cannot see their supposed own script

Quote
public SavePlayerClass(playerid)
{
      new string[128];
      new Float:X, Float:Z, Float:Y, Float:Rotation;

        GetPlayerPos(playerid, X, Y, Z);
        GetPlayerFacingAngle(playerid, Rotation);

        new File:pos=fopen("positions.txt", io_append);
        format(string, 256, "AddPlayerClass(0, %f, %f, %f, %f, 0,0,0,0,0,0);", X, Y, Z,Rotation);
        fwrite(pos, string);
        fclose(pos);
}
public SavePlayerClassEx(playerid)
{
      new string[128];
      new Float:X, Float:Z, Float:Y, Float:Rotation;

        GetPlayerPos(playerid, X, Y, Z);
        GetPlayerFacingAngle(playerid, Rotation);

        new File:pos=fopen("positions.txt", io_append);
        format(string, 256, "AddPlayerClassEx(0, 0, %f, %f, %f, 0,0,0,0,0,0);", X, Y, Z, Rotation);
        fwrite(pos, string);
        fclose(pos);
}

angel, lol... Do you even know the difference between angle and angel

you.fail.sir

PS: I would change the fail signature, because I oftenly check my arguments before using them, unlike you.

119
General Discussion / Re: new GameMode - coming soon
« on: November 08, 2012, 06:13:51 pm »
> says that we are crying and being retarded while we are calm
> brings capital bolded red letters with 24pt size
> still claims it's us the ragehouses.

dude.. you fail at it...

also, I can bet you did not make the Pos saver system, because GetPlayerFacingAngle is bugged, so your either iddiot enough to not notice or you did not make it
also, you fail at the
Code: [Select]
/* Position Saver
 *
 *www.vcmpteam.tk
 */

http://www.mediafire.com/?24dnlsp8i8n6fpq


because GetPlayerFacingAngle is bugged, I don't even think you try those scripts, so, how am I supposed to believe the title ( VCMP Team )

you.fail.sir

120
General Discussion / Re: new GameMode - coming soon
« on: November 07, 2012, 02:24:46 pm »
Just to mention, neither of these are made of you.

Pages: 1 ... 6 7 [8] 9 10 ... 16