Installa Steam
Accedi
|
Lingua
简体中文 (cinese semplificato)
繁體中文 (cinese tradizionale)
日本語 (giapponese)
한국어 (coreano)
ไทย (tailandese)
Български (bulgaro)
Čeština (ceco)
Dansk (danese)
Deutsch (tedesco)
English (inglese)
Español - España (spagnolo - Spagna)
Español - Latinoamérica (spagnolo dell'America Latina)
Ελληνικά (greco)
Français (francese)
Indonesiano
Magyar (ungherese)
Nederlands (olandese)
Norsk (norvegese)
Polski (polacco)
Português (portoghese - Portogallo)
Português - Brasil (portoghese brasiliano)
Română (rumeno)
Русский (russo)
Suomi (finlandese)
Svenska (svedese)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraino)
Segnala un problema nella traduzione
============================================
metaxploit = include_lib(current_path + "/metaxploit.so")
// net.so
nlib = metaxploit.load("lib/net.so")
if not nlib then print ("net.so not found!")
print("net.so " + nlib.version)
// init.so
ilib = metaxploit.load("lib/init.so")
if not ilib then print ("init.so not found!")
print("init.so " + ilib.version)
// aptlib.so
aptlib = metaxploit.load("lib/aptclient.so")
if not aptlib then print ("aptlib.so not found!")
print ("aptlib.so " + aptlib.version)
// kernelmodule.so
klib = metaxploit.load("lib/kernel_module.so")
if not klib then print ("kernel_module.so not found!")
print("kernel_module.so " + klib.version)
// kernel_router.so
krlib = metaxploit.load("lib/kernel_router.so")
if not krlib then print ("kernel_router.so not found!")
print("kernel_router.so " + krlib.version)
=======================================
This is kind of weird but do you have any idea how to do the albatross achievement in 4d golf? no holes seem to allow 3 under, unless im missing obvious shortcuts
hostComputer = get_shell.host_computer
metaxploit = include_lib("/lib" + "/metaxploit.so")
if metaxploit == null then metaxploit = include_lib(current_path + "/metaxploit.so")
if not metaxploit then exit("Error. Metaxploit not found.")
libFolder = hostComputer.File("/lib")
libs = libFolder.get_files
for lib in libs
nlib = metaxploit.load(lib.path)
print(lib.name + ": " + nlib.version)
end for