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
Pages: [1]
1  Off Topic / General Chat / MEGAMIND'S Lu Browser on: October 16, 2024, 12:08:55 pm

Features
  • Get Total Players & Total Servers Count
  • Added browser self update
  • Added splash screen
  • Working masterlist
  • Working settings
  • Ip of servers can be seen by clicking on hostnames
  • Game connects on clicking Connect button
  • Added uninstaller in taskmanager app options
  • Added Tools menu
  • Added force quit and relaunch browser in show hidden icons menu
  • Added Custom icons to tools menu
  • Added installers splash screen
  • Added gta-3 font styles
  • Added rollback system if u get some error on new update or get files corrupted ur browser will use the previous update
  • Updates more then 3 previous updates will automatically removed by browser itself for free up some storage
  • Massive UI update

Requirements:



Download:


Those who have the browser already installed will get a update automatically, those who are new to this browser can download and install the latest update

suggestions are welcome

Note: More updates are on its way..! The browser will self auto update u wont need to download again and again..!

2  Off Topic / General Chat / ID for Lu Android App on: September 04, 2024, 05:37:18 pm
Decided to make one android app for Lu, like why not? atleast we get a wiki that is dead from a long time in this app with other features as well, so i decided to take out some time and make an app for Lu, so as the title says ID for Lu is ready and now u can use ids without getting out of the game again..!



3  Off Topic / General Chat / Want to make an android app? on: July 22, 2024, 05:55:45 pm
sharing an invite link for https://discord.gg/BDka3BNT3u cordova.js developers if any one might be interested they can join and create android apps based on html,js,css for android or ios https://cordova.apache.org/ as the platform it self is awsome but there was no discord chanel for it, so decided to make one

Note: its not for liberty-unleashed related coding, but someone interested to make an app for liberty-unleashed can use it
4  Off Topic / General Chat / WebNet Host on: June 11, 2018, 03:58:46 pm
                                                         
                           We are offering Free & Paid Services.

Low Latency:
We provide several locations to ensure the lowest latency for you and your players on the server.

Custom Control Panel
We provide a custom control panel with a lot of features to manage your server fast and easy!

Fully Protected Servers
You will never have to worry about any kind of (D)DoS attacks! Our services are equipped with full protection against such attacks.

No Downtime
Our powerful hardware will stay online at all times. You will never have to worry about your server going offline ever again!

Payment Methods
We are consistently trying to accept as many methods as possible. You can buy a service using PayPal(coming soon), Western Union & Easy Paisa!

Support
Do you need help with your service, having a problem or do you have a question? We offer full Support for our services and we are always available for any question.

FTP Access
All our services come with a full FTP access to make managing your plugins and files easier! You may access it with your favorite FTP client or with a provided file manager.

MySQL Database
Have a plugin or mod that requires MySQL database? All of our services come with a MySQL database. You can create databases with a click of a button!

Automatic backups
You do not have to worry about losing any of your files. We provide free automatic backups with our services. You can toggle feature in our control panel and download backups in zip format.

For more information regarding our services and to get a free or paid hosting service now, please visit our official website: 
WebNet Official

Regards,
MEGAMIND
WebNet Official founder

Note: Topic will remain locked & will be updated when required
Contact us on: Discord, Facebook

New Stock Available:
1. Game Panel
2. Web Panel
3. Remote Mysql

Host Guide
Game Host: Watch
Relevent: Watch / Watch
Discord Bot Host: Watch
Remote Mysql Host: Watch

Gallery

Latest Updated Video
How to get a Host from Webnet Officail detailed version
https://www.youtube.com/watch?v=qL3tMv6r_Zg

We have started accepting PayPal world wide
Payment Methods:
1.Paypal
2.Easypaisa

Get your host now



Regards,
MEGAMIND
Webnet Official, Developer & Founder


This topic will remain locked for security reasons & may only be unlocked for updating purposes
5  Scripting / Script Snippets / admin system for newbies on: April 03, 2018, 10:50:25 am
i have seen many newbies trying to make a server but they donot have an admin system so heres a little snipper for you guyzz

Code: [Select]
/*top of script*/

const AdminPassword = "adminpassword"
class PlayerInfo
{
admin = false;
}
//=================================

/*onscriptload*/

pinfo <- array(GetMaxPlayers(), null);
//===================================


/*anywhere*/

function PlayerIsAdmin(player)
{
 if(pinfo[pPlayer.ID].admin== true) return 1;
 else return 0;
}
//========================================

/*playerjoin*/

pinfo[pPlayer.ID] = PlayerInfo();
//==========================================



/*playercmd*/
else if(szCommand == "admins")
{
 {
  if ((  pPlayer.Name == "admin" ) || (  pPlayer.Name == "admin1" ))
{
 //MessagePlayer( "[#00ff00]Admins are on Duty [ " + pPlayer.Name + " ] " , pPlayer );
 Message( "Admins are on Duty [ " + pPlayer.Name + " ] ", 0, 255, 0 );
 }
else
{
MessagePlayer( "[#00ff00]Admins available [#00ffff]"+pinfo[pPlayer.ID].admin+"" , pPlayer );
}
}
}

else if (szCommand == "admin")
 {
 if(!szArgs) MessagePlayer( "-> Error: [#ffd700]Please type /admin <admin password>", pPlayer,255,0,102);
 else if ( szArgs != AdminPassword ) MessagePlayer( "-> Error: [#ffd700]Invalid PASSWORD.", pPlayer,255,0,102);
 else
 {
 MessagePlayer( "-> [#00ffff]Welcome "+pPlayer.Name+". You are logged as admin in server.", pPlayer,255,0,102); pinfo[pPlayer.ID].admin = true;
 }
 }

 else if ( szCommand == "ban" )
    {
        if ( (  pPlayer.Name == "admin" ) || (  pPlayer.Name == "admin1" ) )
        {
            if ( szArgs )
            {
           local plr = FindPlayer( szArgs );
               if ( plr )
               {
               BanPlayer( plr );
               }
               else MessagePlayer( "[#00ff00]Invalid Player " , pPlayer );
            }
            else MessagePlayer( "[#0f00f0]Type /ban <player> " , pPlayer );
        }
        else MessagePlayer( "[#F02F0F] Your are not admin. " , pPlayer )
    }

else if ( szCommand == "kick" )
    {
        if ( (  pPlayer.Name == "admin" ) || (  pPlayer.Name == "admin1" ) )
        {
            if ( szArgs )
            {
           local plr = FindPlayer( szArgs );
               if ( plr )
               {
               KickPlayer( plr );
               }
               else MessagePlayer( "[#00ff00]Invalid Player " , pPlayer );
            }
            else MessagePlayer( "[#0f00f0]Type /kick <player> " , pPlayer );
        }
        else MessagePlayer( "[#F02F0F] Your are not admin. " , pPlayer )
    }

   else if ( szCommand == "settime" )
     {
        if ( (  pPlayer.Name == "admin" ) || (  pPlayer.Name == "admin1" ) ){
          local aTime = split( szArgs, " " );
          local szHour = aTime[0], szMin = aTime[1];
         
          SetTime( szHour.tointeger(), szMin.tointeger() );
     }
}

    else if (szCommand == "setweather" )
     {
if ( (  pPlayer.Name == "admin" ) || (  pPlayer.Name == "admin1" ) ){
          SetWeather( szArgs.tointeger() );
     }
}

else if ( szCommand == "ann" )
{
if ( (  pPlayer.Name == "admin" ) || (  pPlayer.Name == "admin1" ) ){
if ( szArgs ) BigMessage( szArgs, 5000, 1 );
}
}
// ==================================
6  Liberty Unleashed / Liberty Unleashed Chat / GTA 3 LUMP.exe on: January 05, 2018, 07:18:38 pm
Current version
Releasing a Software for lu:mp
Note:-just download the setup and go on through steps
Build version 1.1997.2018
Download from : http://www.mediafire.com/file/abyqwi944674x53/GTA-LU.exe


What does it do you will know it better when you download it  ;)


Old version
Download it from : http://www.mediafire.com/file/c6feh61xa6h24u5/GTA+3-LU+MULTIPLAYER+GUIDE.exe
7  Liberty Unleashed / Liberty Unleashed Chat / GTA-3 LU:MP setup on: January 05, 2018, 06:57:36 pm
Current version
Releasing a Software for lu:mp
Note:-just download the setup and go on through steps
Build version 1.1997.2018
Download from : http://www.mediafire.com/file/abyqwi944674x53/GTA-LU.exe


What does it do you will know it better when you download it  ;)


Old version
Download it from : http://www.mediafire.com/file/c6feh61xa6h24u5/GTA+3-LU+MULTIPLAYER+GUIDE.exe
8  Liberty Unleashed / LU Clans / TDK Clan ->The Dark Knights on: July 09, 2017, 11:27:44 pm
So , The clan TDK = The Dark Knights was established on June 2016 and the Clan TDK well be known well very soon.

The Dark Knights forum : http://tdkclan.smfnew2.com
You can look after  the information below about the TDKs.
Leaders: [TDK]MEGAMIND
 Co-Leaders: =TDK=MDK^
9  Liberty Unleashed / Suggestions / Gta 3 Lu Multipayer Guide on: June 19, 2017, 04:11:06 am
Hi guyyz i wanted to share my software with u
it is called as GTA 3-LU MULTIPLAYER GUIDE
it makes LU more easy to acces.......
sorry for less description when u will download it u can have its benefits
 heres the pic



download link:watch tutorial on how to use  GTA 3-LU MULTIPLAYER GUIDE

https://www.youtube.com/watch?v=1eUHz1ts4CY

Note: the 2nd option (open client browser) will only work if ur destination is like this C:\GTA 3\lu.exe

+it plays a  theme song too if ur game is present in local drive C:

One more important Note: if ur antivirus detects it like a virus so it will be a false positive alarm downt worry its not a virus...
it has been tested through many antivirus programs mostly did not detected it like a virus just avg does idk why?
maube avg is not updated :p....

so plzz enjoy...

i would be very sorry to Developers of lu if they mind my work i was just being freindly so that lu can get more excellent....
10  Scripting / Script Snippets / saving a player position on: June 11, 2017, 11:03:32 pm
Quote
function onPlayerCommand(player, cmd, text)
{
  if ( cmd == "print")
  {
    if (player.Spawned)
    {
     
      local pos = player.Pos, x = pos.x, y = pos.y, z = pos.z;

      print("Vector( " + x + ", " + y + ", " + z +");" );

      return true
    }
    else MessagePlayer("You never spawned", player, 255, 0, 0);
  }
}

or
save it to ur commands onplayercommands and when in game do /s the positons or values will be displayed on the console..
Quote
else if( szCommand == "s" )
{
 print( pPlayer.Pos );
 }


in game printing pos

Quote
Player_Pos <- array(GetMaxPlayers());

class Player_Stores_Pos
{
  /* No true reason to set these as floats */
 
  X = 0;
  Y = 0;
  Z = 0;

  Position_Exist = false;
 
}

function onPlayerCommand(player, cmd, text)
{
  if ( cmd == "print")
  {
    if (player.Spawned)
    {
     
      local pos = player.Pos, x = pos.x, y = pos.y, z = pos.z;

      /* This print will return a vector that can be copied and pasted via in scripting */
      print("Vector( " + x + ", " + y + ", " + z +");" );

      return true
    }
    else MessagePlayer("You never spawned", player, 255, 0, 0);
  }

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

  if ( cmd == "setclass")
  {
     /* You should add this on player join instead */
     Player_Pos[player.ID] = Player_Stores_Pos();

     MessagePlayer("You have set the position class", player, 100, 0, 115);

     return true;
  }

  if ( cmd == "endclass")
  {
     /* You should add this on player part instead */
     Player_Pos[player.ID] = null;

     MessagePlayer("You have cleared the position array", player, 100, 0, 115);

     return true;
  }

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

  if ( cmd == "save")
  {
    if (player.Spawned)
    {
     
      local pos = player.Pos, x = pos.x, y = pos.y, z = pos.z;
     
      /* Now store the positions */
      Player_Pos[player.ID].X = x;
      Player_Pos[player.ID].Y = y;
      Player_Pos[player.ID].Z = z;

      Player_Pos[player.ID].Position_Exist = true;

      local District = GetDistrictName(Player_Pos[player.ID].X, Player_Pos[player.ID].Y);
      MessagePlayer("Position Saved in: " + District, player, 100, 0, 115);

      return true
    }
    else MessagePlayer("You never spawned", player, 255, 0, 0);
  }

  if ( cmd == "load")
  {
    if (player.Spawned)
    {
      if (Position_Exist == true)
      {
        player.Pos = Vector(Player_Pos[player.ID].X, Player_Pos[player.ID].Y, Player_Pos[player.ID].Z);
      }
      else MessagePlayer("I think you forgot to save a position ? :P xD", player, 255, 255, 33);

      return true
    }
    else MessagePlayer("You never spawned", player, 255, 0, 0);
  }

  //--------------------------------------------------------------------------
 
  return 1;
}
11  Scripting / Script Snippets / news system! on: June 11, 2017, 10:59:15 pm
Quote
function onPlayerJoin( pPlayer )
{
        NewTimer( "MessagePlayer", 24000, 0, "NEWS:- [#ed9121]Dont forget to add this server to your favourities!", pPlayer );
        NewTimer( "MessagePlayer", 20000, 0, "NEWS:- [#76ff7a]gta 3 multiplayer!", pPlayer );
        NewTimer( "MessagePlayer", 30000, 0, "NEWS:- [#ff033e]dont forget to register and login!", pPlayer );
        NewTimer( "MessagePlayer", 40000, 0, "NEWS:- [#e32636]go through cmds before playing!", pPlayer );
}

hope it will be helpfull..
12  Scripting / Script Snippets / /cd system on: June 11, 2017, 10:55:15 pm
Quote
else if ( szCommand == "cd" )
   {
   NewTimer( "BigMessage", 1000, 1, pPlayer ,"=3=" , 5000, 3 );
   NewTimer( "BigMessage", 2000, 1, pPlayer ,"=2=" , 5000, 3 );
   NewTimer( "BigMessage", 3000, 1, pPlayer ,"=1=" , 5000, 3 );
   NewTimer( "BigMessage", 4000, 1, pPlayer ,"=GO!=" , 5000, 3 );
   }
13  Scripting / Script Snippets / new wep system easy way on: June 11, 2017, 10:51:23 pm
Quote
function onPlayerCommand( pPlayer, szCommand, szArgs )
{
if ( szCommand == "cmds" )
   {
      MessagePlayer( "Current server commands are the following", pPlayer );
                MessagePlayer( "------------------wepcmds-------------------", pPlayer );
}
else if ( szCommand == "wepcmds" )
   {
       MessagePlayer( "------------Wepon Commands---------------", pPlayer );
                 MessagePlayer( "Syntax:-(/)use before wep name", pPlayer );
                 MessagePlayer( "Example:- /name of wep here", pPlayer );
                 MessagePlayer( "(/):- m16 colt shot gre uzi", pPlayer );
                 MessagePlayer( "----------------------------------------", pPlayer );
   }
else if ( szCommand == "m16" )
   {
      pPlayer.SetWeapon( 6 );
   }
   else if ( szCommand == "colt" )
   {
      pPlayer.SetWeapon( 2 );
   }
   else if ( szCommand == "shot" )
   {
      pPlayer.SetWeapon( 4 );
   }
   else if ( szCommand == "gre" )
   {
      pPlayer.SetWeapon( 11 );
   }
else if ( szCommand == "uzi" )
   {
      pPlayer.SetWeapon( 3 );
   }
}

Modify message
14  Servers / Advertise your server! / [0.1]Top Down City LC-MP Server on: March 20, 2017, 09:04:54 am


Server Name : TOP DOWN CITY LU-SERVER
Server Port : 2301
Current version: TDC
Owner : MRDK
Gamemode : ---DM---
Uptime :24hrs


COMMANDS:
register rules info wepcmds
login cd vcmds admins forum
script



REAL NAME: MEGA MIND
ingame nick: MRDK(OWNER)

OUR Website: view
OUR FACEBOOK PAGE: view   
YOUTUBE: view

let me know in the forums if there are any bugs
Pages: [1]
© Liberty Unleashed Team.