Menu

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.

Show posts Menu

Messages - kennedyarz

#1
see you at MTA. :)
#2
wait for stormeus or maxorator to arrive, any of them is very active and will solve all the bugs
even these. for now sleep until they arrive. (note: don't go to die)
#3
we have the best team of creators in the history of GTA, even better than those of MTA, the creators are always up to date solving bugs, not like others who update the game every 3 years and leave 10 new bugs each time they do ...

Quote from: Athanatos on Nov 03, 2021, 03:07 PMI reported this one too, but no one said anything

https://forum.vc-mp.org/?topic=6320.0
BRUH
you still here?

Quote from: Athanatos on May 02, 2020, 06:38 PMSo yeah, anything else to say? No, excepts my regards. It's time for me to move on other projects and focus on game developing. Shortly: goodbye VC:MP community.

I thought he was gone, so many goodbyes and the repentant dog returns.
How many times do you plan to break @habi's heart?
#4
Script Showroom / Re: Bank Rob [ By ] Jutt
Oct 25, 2021, 09:29 PM
Quote from: Jutt on Oct 09, 2021, 01:14 PMThe Bank Rob Script By Jutt { ALl Credits By Jutt ]

if ( pickup.Model == 380 )
      {
player.Cash += 100000;
PlaySound( player.UniqueWorld ,470, player.Pos );
Message( " " + player.Name + " has robbed 1000000$ from the bank. all cops are requested to arrest him as soon as possible!!!!!!!!" );
pickup.RespawnTime = 100000;
}


======== Thank You ========


awesome script. mark zuckerberg needs employees. have not applied to be a programmer there in the META company? you are wasting your talent here
#5
It is something positive for the community, but you connect to a server with 17 players and the only real one is you, the other 16 are bots. it's ridiculous that they enlist as normal players.
#6
Quote from: Rardodus Bruise on Nov 04, 2018, 04:23 PMThanks Bro!

else if(cmd == "gps") MessagePlayer("Vector: "+player.Pos,player);
#7
Snippet Showroom / Re: GTA Vice-City: Cheats.
Jul 11, 2018, 06:25 PM
Quote from: Mahmoud Tornado on Jul 11, 2018, 04:46 PMif ( text == "bigbang")
    {
    CreateExplosion( player.World, 0, player.Pos.x +10, player.Pos.y +10, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x +10, player.Pos.y, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x, player.Pos.y +10, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x +7, player.Pos.y +7, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x +7, player.Pos.y, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x, player.Pos.y +7, player.Pos.z, -1, true );
    }

hahahaha what you do. my eyes bleed
#8
Quote from: Athanatos on Jul 05, 2018, 06:22 AMOr even INI.

that is crap that's why I do not name

#9
That ban system is very insecure. It is easy to evade. You can also make your own ban system in a very easy way adding more security

Name, Ip, UID, UID2
It is quite easy. you just have to know how to use sqlite http://wiki.vc-mp.org/wiki/Scripting/Squirrel/Functions#SQLite_Functions_.28In_the_.22SQLite.22_plugin.29

or MYSQL
http://wiki.vc-mp.org/wiki/Scripting/Squirrel/Functions#MySQL_Functions_.28In_the_.22MySQL.22_plugin.29
#10
Support / Re: Other error
Jul 04, 2018, 11:39 PM
la verdad es que dan pena formando siempre alboroto en este foro.  It is also a forum in English. And alex, you are not talking about professionals and novices because the 2 are very beginners and still have a lot to learn
#11
Quote from: KrooB on Jul 02, 2018, 11:39 AMWhere is the worng ?

spam <- array(GetMaxPlayers(), 0 );

function spam(player)
{
local player=FindPlayer(player);
if(player)
{
spam[player.ID] = 1;
}
}

else if (cmd == "arava")
{
if(spam[player.ID] == 5 ) MessagePlayer("Dont Spam!",player);
else if {
spam[player.ID]++;
player.Health = 100;
NewTimer( "spam", 5000, 0, player.Name );
}




you forgot the closing in the command

use

else if (cmd == "arava")
    {
        if(spam[player.ID] == 5 ) MessagePlayer("Dont Spam!",player);
        else
{
        spam[player.ID]++;
        player.Health = 100;
        NewTimer( "spam", 5000, 0, player.Name );
        }
}
#12
Quote from: PunkNoodle on Jul 01, 2018, 03:13 AMReproducible
Always

What you were doing when the bug happened
Testing this new setting, I've got the message telling me the value applied, but no visible effect. F9 key neither has effect nor I get any message at all.

Is it doing it in a server version 04rel006?
it only works for that version I guess
#13
Bugs and Crashes / Re: onPlayerStateChange
Jun 30, 2018, 01:37 PM
and what kind of reports do you expect? is more used for functions Distance from point to point I suppose. such as executing an action when you are near a point.
Example:

function onScriptLoad()
{
BankIcon <- array(100, null );
}
 
function onPlayerStateChange( player, oldState, newState )
{
if(DistanceFromPoint( player.Pos.x, player.Pos.y,-908.874,-342.258)<50)
{
if(BankIcon[player.ID]==null) BankIcon[player.ID]=CreateMarker(player.UniqueWorld, Vector(-908.874,-342.258,10), 1, RGB(0, 0, 0),24);
}
if(DistanceFromPoint( player.Pos.x, player.Pos.y,-908.874,-342.258)>50)
{
if(BankIcon[player.ID]!=null) DestroyMarker(BankIcon[player.ID]),BankIcon[player.ID]=null;
}
}

which creates an icon when you're near the bank and disappears when you get away
#14
Script Showroom / Re: Vehicle System
Jun 29, 2018, 05:06 PM
else if ( cmd == "buycar" )
{
if ( !text ) MessagePlayer("Use /"+cmd+" <Veh/ID>.", player);
else if ( !IsNum( text ) ) MessagePlayer("ID Must be numbers.", player );
else if ( !IsVehForSale( text ) ) MessagePlayer("This vehicle is not for sale.", player );
else {
local q = QuerySQL( Vehicles, "SELECT * FROM Sale WHERE ID='"+text+"'" );
local Cost = GetSQLColumnData( q, 1 );
if ( player.Cash < Cost ) MessagePlayer("Not enought money.", player );
else
{
QuerySQL( Vehicles, "UPDATE Sale SET Owner='"+player.Name+"' WHERE ID='"+text+"'" );
MessagePlayer( "You have bought Vehicle ID "+text+".", player );
DecCash( player, Cost );
}
}
}

paste this in a place that is not commands since it is a different function ... and change what you use. Stats[, status[, Status[...  ]Cash ,]Money .....
Idk your script

function DecCash( player, amount )
{
local cash = Stats[ player.ID ].Cash;
local det = cash - amount;
Stats[ player.ID ].Cash = det;
player.Cash = det;
}
#15
General Discussion / Re: is it UID?
Jun 29, 2018, 04:50 PM
Quote from: vitogta on Jun 29, 2018, 04:44 PM
Quote from: kennedyarz on Jun 29, 2018, 04:40 PMSo why do you want to know if you have anti cheats or not?

LOL
Every good scirpter having his-own aimbot https://www.youtube.com/watch?v=_07IZp0f5lc

causes laughter the first comment


* Ervinkiller*
all dislike no link