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

Topics - Cool

#21
how to make a system which check if user has a level and he does not visit from 3 days so reset his level to 1 if user spend 30 minutes so count his visit other wise not count his visit
#22
Support / cant conect to any server
Sep 06, 2016, 05:47 PM
I am trying to connect to vcmp servers but can't connect to any server
Hercules is conneting and then comes can not conect
Reinstalling vcmp browser (tried not work)
#23
Applications / my request
Aug 22, 2016, 07:01 PM
User Name: Hercules
Email Address: [email protected]
Server Name: [0.4] World wars
Port: 5199
Slots(10-100): 100
#24
Off-Topic General / New Link
Aug 20, 2016, 04:39 PM
Please  update this topic link http://forum.vc-mp.org/?topic=811.0   @MacTavish
#25
as topic name says tell me who is your favourite spammer of forum.
#26
Script and Content Requests / Clan - system
Aug 10, 2016, 11:54 PM
I Know and understand no one has much time to make a thing for another but i dont know much scripting thats why i asking make a advance clan system and release it i meant by advance in which players can register there clan and then the clan manager can add users if user doesent exists in clan kick him.
Note: I know there is an old one but old will lagg i listened from some exprienced members and i tried many times to convert but failed and also spammed the forum with topics please dont abuse if you cant i know no has time to do it but if some one free time than
#27
Script and Content Requests / Uid autologin
Aug 04, 2016, 02:15 PM
how to make a autologin system by uid how i can do that i have already uidalias sytem available but how to make autologin
#28
Script and Content Requests / Custom skin
Aug 03, 2016, 10:06 AM
Hi guys can any one teach me how to convert another game skin to vcmp :P
#29
Off-Topic General / Question
Jul 28, 2016, 02:02 PM
Why people creates too much db different db for every function i watch many people any profit?
#30
Script and Content Requests / custom plane
Jul 28, 2016, 12:14 PM
Hi guys i want to add Hydra custom plane in my server but i want to do something from which all can buy that and can spawn it at a time
#31
General Discussion / Restarter
Jul 26, 2016, 08:58 AM
hello i have a vcmp server and its hosted on vps sometimes its got crashed so i want to do somthing like auto restart is it posible
#32
function GiveSpawnwep(player)
{
 if (SpawnwepPlayer[ player.ID ] != null)
 {
  local i = 1, khe = SpawnwepPlayer[ player.ID ], Nweps = NumTok( khe," ");
  while ( i < (Nweps.tointeger()+1))
  {
   local ID = GetTok( khe," ", i);
   player.SetWeapon( ID.tointeger(), 99999 ); i++;
  }
  ClientMessage("-> [#83bab3][SPAWNWEP] Weapons setting in spawn, Completed successfully.",player,255,0,102);
 }
}
error line    player.SetWeapon( ID.tointeger(), 99999 ); i++;
#33
Off-Topic General / Ping
Jul 18, 2016, 02:45 PM
Hello guys i want to ask about ping on whats its depends its depends on vps connection speed or depends on vps Ram?
#34
hi when i kick some one he got kicked but the console give error here is screen shot

error line 384 =    if( pstats[ player.ID ].Level != 0 )
#35
how to send private message in rulk irc three bots
http://forum.vc-mp.org/?topic=1695.msg12125#msg12125
#36
Off-Topic General / hello a question
Jul 04, 2016, 03:47 AM
i searched google but not found what is the url of Lu support forum and where i can find his multiplayer client.
#37
i am try to make an cmds to change their nickname if they are offline i make that cmds but error The index Name does not exists
else if ( cmd == "sn" )
{
if ( GetLevel(player) < 0 ) MessagePlayer (" [#4682B4][Error][#FFFFFF]You must need atleast level 7 to access the command",player );
else if ( !text ) MessagePlayer("[#4682B4][Syntax][#FFFFFF] / " + cmd + " [OLD/NICK] [New/Nick]", player );       
else {
local plr = GetTok(text, " ", 1);
if (plr== null) MessagePlayer("[#4682B4][ERROR][#FFFFFF]Please Insert A Valid Nick!", player );
else {
local nick = GetTok(text, " ", 2);
if ( nick== null) MessagePlayer("[#4682B4][ERROR][#FFFFFF]Please Insert A Valid Nick!", player );
else {
local q = QuerySQL( sqliteDB, "SELECT * FROM Accounts WHERE Name='"+plr+"'");
local q = QuerySQL( sqliteDB, "SELECT * FROM Accounts WHERE NameLower='" + plr.Name.tolower() + "'" );
local q = QuerySQL( sqliteDB, "SELECT * FROM Properties  WHERE Name='"+plr+"'");
if ( GetSQLColumnData(q, 0) )
                {
MessagePlayer("[#4682B4][INFO][#FFFFFF]You changed nick of " + plr + " To: " +nick+ ".",player);
MessagePlayer("[#4682B4][INFO][#FFFFFF]Admin " + player.Name + " changed your nick To: " +nick+ ". Don't Forget It!",player);
QuerySQL(sqliteDB,"UPDATE Accounts SET Name='"+nick+"' WHERE Name='"+plr+"'");
    Message("DONE");
QuerySQL(sqliteDB,"UPDATE Accounts SET NameLower='" +nick.tolower()+ "' WHERE NameLower='"+plr.tolower()+"'");
    Message("DONE");
QuerySQL(sqliteDB,"UPDATE Properties SET Name='"+nick+"' WHERE Name='"+plr+"'");
    Message("DONE");
}
else MessagePlayer("Invalid Nick/ID Specified!",player );
      FreeSQLQuery( q );
}
}
}
}
#38
hello guys my property pickup working fine showing info but when i add this thing on pickupclaim my property pickup not working
function onPickupClaimPicked( player, pickup )
{
 if ( player.Health > 0 && wepPickups.rawin( pickup.ID ) )
 {
  PlaySound( player.UniqueWorld, 78, player.Pos );

  wepPickups.rawdelete( pickup.ID );
  pickup.Remove();

  return 1;
 }

 return 0;
}
function onPickupPickedUp( player, pickup )

if(pickup.Model == 407)
{
local id = pickup.ID+1, q = QuerySQL(sqliteDB,"SELECT * FROM Properties WHERE PropertyID='"+id+"'");
if (GetSQLColumnData(q,0) !=null)
{
local name = GetSQLColumnData(q, 0), owner = GetSQLColumnData(q, 4), sharer = GetSQLColumnData(q, 5), price = GetSQLColumnData(q, 6);
MessagePlayer(" [#4682B4][Info][#FFFFFF]ID: "+id+", Property Name ("+name+"), Price ("+price+"), Owner ("+owner+"), Sharer ("+sharer+")",player);
}
else return;
FreeSQLQuery(q);
pickup.RespawnTime = 5000;
}

  if ( pickup.Model == 512 ) {
  if ( pstats[ player.ID ].raceplayer ) {
   player.Cash+=10000;
   Message("[#4682B4][Info][#FFFFFF]"+player.Name + " have got 10000$.");
   pickup.Remove();
   Message("[#4682B4][Info][#FFFFFF]"+player.Name+" has won ." );
   closerace();
  }
  }
}
#39
how to remove pickup of wepons after death which came i want to remove it after 30secs please will you guys help me please explain in detail i read old topic but didnt understand
#40
Off-Topic General / LOL
Jun 17, 2016, 01:37 AM
LOL vice city unofficial servers has much players then official.
Fact: I dont know about others but Lw does not care of players.