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 - Mashreq

#1
Servers / Evolution Deathmatch Server
May 16, 2017, 05:57 AM
IP Address: 51.255.102.249:8194
Version: EvoDM v1
Founder: WiLsOn
Scripter: Mashreq
Player Slots: 100
Forum: http://evolution.thijn.ovh
IRC Echo: #Evolution on LUNet
#2
Servers / Sharks versus Marios
Aug 23, 2016, 02:44 PM


Sharks versus Marios server was discontinued from development and eventually closed in 2012. (Finally) We are making a comeback for VCMP 0.4, aspiring to deliver the same experience which everyone loved in the 0.3z server.
The server will be open to public on 25th August 2016, GMT 9 AM.

Server Information
Scripted by: Mashreq
Credits: Thijn, Knucis & Charley (SvM 0.3 scripters)
IP: 51.255.102.243:8192
IRC: #SVM.Echo
Stay tuned with us to know more information about the server, hope to see you all in the server on Thursday!
#3
How is name stored in the table - LMS, Spawnwep and Spawnloc?

For example your name is Hercules,
  • In LMS, how it is stored as? (Hercules or hercules)
  • In Spawnwep, how it is stored as? (Hercules or hercules)
  • In Spawnloc, how it is stored as? (Hercules or hercules)
#4
It looks okay for me. Does that throw any errors?
#5
Off-Topic General / Re: Where are you from?
Jun 30, 2016, 02:25 AM
United Arab Emirates
#6
Support / Re: please Help!!!
Jun 30, 2016, 12:47 AM
This is due to the update of the new version servers of GUI which doesn't works in windows XP, resulting in a crash.

Either you need to update your OS to Windows 7 (or higher) or you will need to wait for the developers to fix it
#7
There were many mistakes in your command, the following command should work perfectly for you.

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), nick = GetTok(text, " ", 2);
if (plr== null) MessagePlayer("[#4682B4][ERROR][#FFFFFF]Please Insert A Valid Nick!", player );
else if ( nick== null) MessagePlayer("[#4682B4][ERROR][#FFFFFF]Please Insert A Valid Nick!", player );
else
 {
local q = QuerySQL( sqliteDB, "SELECT * FROM Accounts WHERE NameLower='" + plr.tolower() + "'");
local q1 = QuerySQL( sqliteDB, "SELECT * FROM Accounts WHERE NameLower='" + nick.tolower() + "'" );
if ( GetSQLColumnData(q, 0) )
                {
if ( !GetSQLColumnData(q1, 0) )
               {
MessagePlayer("[#4682B4][INFO][#FFFFFF]You changed nick of " + plr + " To: " +nick+ ".",player);
if ( FindPlayer( plr ) ) {
MessagePlayer("[#4682B4][INFO][#FFFFFF]Admin " + player.Name + " changed your nick To: " +nick+ ". Don't Forget It!", FindPlayer( plr ) );
FindPlayer( plr ).Name = nick;
}
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( nick + " is already a registered user." ,player );
}
else MessagePlayer( plr + " is not a registered user." ,player );
      FreeSQLQuery( q );
FreeSQLQuery( q1 );
}
}
}
#8
Support / Re: please Help!!!
Jun 30, 2016, 12:02 AM
Are you using Windows XP?
#9
Servers / Re: [0.4] Army vs Terrorists
Apr 24, 2016, 03:29 PM
24/4/2016

A major update has been made for the server. New gamemode: AvT 1.1.
The update includes:

  • 5 arenas in total.
    • Escobar International Airport vs Army Base - (default)
    • Downtown Police-station vs Phil's Base
    • Little Havana Police-station vs Cubans
    • Downtown Police-station vs Wellstacked Pizza
    • Little Havana Police-station vs Vice port
           * The arena will be default and later it will switch to next arena after a team scores 250 points.
  • Health system - /heal command is added, now a player can heal only at drug store and hospitals. (Costs $320)
  • A spectator skin - An additional skin has been added for spectators, the player who choose this skin could not be able to spawn. The player can only be able to spectate if he chooses this skin. (/spec to spectate and /stopspec to stop spectating)
  • A new clan-war system - the clan war can be only activated by an admin. The clanwar system's functioning is as follows:

    - Clanwar can be started between 2 clans.
    - A lobby where the players will be teleported before the clanwar starts.
    - Clanwar system has a spawn password, which will restrict other players to spawn (they can be able to spectate using the spectator skin)
    - Clanwar system has a limit of player count.
    - Clanwar system has a limit of time (which can be adjusted by an admin)
#10
Servers / [0.4] Army vs Terrorists
Apr 09, 2016, 04:49 AM

Army vs Terrorists is a server based on San Andreas Multiplayer and Counter-Strike, where there will be two teams an Army (blue) and a Terrorist (red). The Terrorists will spawn at Escobar International Airport and  The Army at the Army base. The job of Terrorists is to plant bomb at the dome of the Army base (the route to the dome can be found in an icon at the radar/map), the terrorist can either plant the bomb by right click button of the mouse (RMB) or by the command /plantbomb. The team will receive +30 score if the bomb gets exploded when none of the Army defuses the bomb. Along with this there are also bases which can be captured by any team either the terrorist or the army, the team will gain 20 score. The players can heal only by the pickup which is located at the West-Haven Healthcare Center Vice City.

Server Information
IP: 185.49.15.220:8198
Forum: www.avt-server.tk
IRC:  #AvT-server @ LUnet
Hosted by: Gudio
#11
Are you talking about /s? which will print the coordinates in game as well as it save in your vcmp directory. In 0.4 there's no such command, the alternative way is to make a command using the event - onPlayerCommand..

Which will look something like this:
function onPlayerCommand( player, command, arguments )
{
if ( command == "s" ) MessagePlayer( player.Pos + ", " + player.Angle, player );
}
#12
As far as I know there's no build-in command like /save for saving locations in 0.3z.
#13
Support / Re: Stat
Jan 25, 2016, 02:08 AM
Some functions are expected from you, without it we cannot help you.
#14
Script Showroom / Re: Total War DM
Jan 21, 2016, 05:40 PM
Quote from: DeaTh_LighT on Jan 21, 2016, 04:23 PMMaybe What Happens to it
[Warning]onScriptLoad Failed To Execute .......check the console for more details ..
So Maybe iam doing something wrong , it also says
An Error Occured [Index "ConnectSQL" Doesn't Exists
So What should i do , if not so send me the server through my email : [email protected]
i wish i will get solutions
The error shows because you haven't loaded the sqlite plugin, keep the plugin in the folder and load it in your server.cfg and you're done!
#15
You are trying to enter a record in the table (Ban) which is having the column title MacID whereas you have specified the wrong column title Mac while entering a record in the table (Ban). This might be the reason that leads to show the error - UniqueID does not exists. So try changing your Mac column title in your ban function to MacID.

And I have noticed a mistake that you have done in your ban function, you have given KickPla,yer( player ); which should be KickPlayer( player );