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 - J. Rockford

#1
@rwwpl. I'm not able to use that method as the plugin is required. I have to yield the script from getting that far. I wish the wiki was available.
#2
Interesting! I will be eventually running the same method from my website. But all three will be launched.

Liberty Unleashed
VCMP
GTA Connected
SAMP at some point

in the same sequence, It'll have to be "Scripts/" as LU hardcoded that method". Server file, client file. That's it. Just three folders "Server/Scripts/Main/". everything else just gets packaged together and configured.
#3
I've noticed that Liberty Unleashed Scripting and VCMP is about the same. So I'm trying to write one universal script that can run both. Wouldn't be hard. Also change some root table names to make each more compatible to run the same line of code versus getting the MultiPlayer variable.

In Liberty Unleashed I can find what are keyworded as "HashTable", Really unique, shouldn't find that anywhere else but Liberty Unleashed. The VCMP wiki is down and I need to access it to see what is unique that I could find in the root table to determine what script needs to be handled [VCMP : LU].

local MultiPlayer = "GTA"

try {
   
    // HashTables can be found
    if ("HashTable" in getroottable()) {
      print("Liberty Unleashed");
      MultiPlayer = "Liberty Unleashed";
    }
   
// VCMP here
 }
 catch (e) {
   print("Fucked");
 }
   
//----------------------------------------------
I need a vcmp detect so I can use the same scrip in GTA Connected as well.
 :)