ok, not sure why it didnt worked, but never mind that.
here is a quick tutorial i made for you how to export every command into dark basic:
if file exist("MyBat.bat")=1 then delete file "MyBat.bat"
if file exist("buffer.txt")=1 then delete file "buffer.txt"
open to write 1,"MyBat.bat"
write string 1,"@echo off"
write string 1,"ping 127.0.0.1 -all > buffer.txt"
close file 1
execute file "MyBat.bat","",""
repeat
cls
text 0,0,"Generating PING file, please wait.."
sleep 100
until file exist("buffer.txt")
//Read the buffer.txt file:
open to read 1,"buffer.txt"
cls
repeat
read string 1,s$
print s$
until file end(1)
close file 1
wait key
basiclly, it creates a .bat file and executes it.
inside the bat file there is an output to file command.
then DBP waits for any new file created and reads it.
thats basicly it.
more 3d models .x/.obj and more foramts here:
[href]https://www.turbosquid.com/Search/Index.cfm?keyword=gogetax1&x=0&y=0[href]