Raised This Month: $12 Target: $400
 3% 

Position Ent


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
amirwolf
Senior Member
Join Date: Feb 2019
Location: Iran
Old 11-18-2023 , 16:58   Position Ent
Reply With Quote #1

Hello
I use this part to store blocks (copy and rotate).
Everything works fine
But when I move the file that I created and saved from this section to the local server for testing, the blocks are not in their place, their settings are damaged and most of the parts are deleted.
But they work well in the server where I made it
What is the problem?
PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <fakemeta>
#include <fakemeta_util>
#include <engine>
#include <fun>
#include <cstrike>
#include <hamsandwich>
#include <fvault>

new cloneBlockOffset;
new 
szFile[88];

new 
Float:userBlockConnectOrigin[2][3];
new 
userBlockConnect[33];
new 
bool:userBlockStart[33][2];

public 
cloneOffset(id){
    if(!
has_flag(id"a")) return;
    
    new 
szOffset[4];
    
read_argv(1szOffsetsizeof(szOffset));
    
cloneBlockOffset str_to_num(szOffset);
    
    
writeOffsetBlock();
    
adminLockBlock(id);
}

public 
adminLockBlock(id) {
    if (!
is_user_connected(id) || !has_flag(id"a")) {
        return 
0;
    }
    
    new 
menu menu_create("Block Menu""adminLockBlock_2");
    
    
addMenuItems(menuid);
    
    
menu_display(idmenu0);
    return 
1;
}

public 
addMenuItems(menuid) {
    
menu_additem(menu"Lock/Unlock the Block"""0);
    
menu_additem(menu"Delete Block"""1);
    
menu_additem(menu"Save"""2);
    
menu_additem(menu"Load"""3);
    
menu_additem(menu"Reset"""4);
    new 
itemText[128];
    
format(itemTextsizeof(itemText), "Change offset: %d"cloneBlockOffset);
    
menu_additem(menuitemText""5);
    
menu_additem(menuuserBlockStart[id][0] ? "Connect the blocks" "Select a block"""6);
    
menu_additem(menu"Reverse vec"""7);
    
menu_additem(menu"Reset vec"""8);
}
public 
removeColor(ent){    
    
set_pev(ent,pev_rendermode,kRenderNormal);
    
set_pev(ent,pev_renderamt255.0 );
}
public 
adminLockBlock_2(idmenuitem){
    if( 
item == MENU_EXIT ){
        
menu_destroy(menu);
        return 
PLUGIN_HANDLED;
    }
    switch(
item){
        case 
0:{
            new 
entbody;
            
get_user_aiming(identbody);
            
            if( !
pev_valid(ent) ){
                
print_color(id"Eat for anything");
                
adminLockBlock(id);            
                return 
PLUGIN_HANDLED;
            }
            switch(
GetEntMover(ent)){
                case 
0:{
                    
set_pev(ent,pev_rendermode,kRenderTransColor);
                    
set_pev(ent,pev_rendercolorFloat:{163.01.037.0} );
                    
set_pev(ent,pev_renderamt240.0 );    
                    
SetEntMover(ent1);
                    
print_color(id"Blocked [^4%d^1]"ent);
                    
set_task(0.5"removeColor"ent);
                }
                case 
1:{                    
                    
set_pev(ent,pev_rendermode,kRenderTransColor);
                    
set_pev(ent,pev_rendercolorFloat:{37.0167.01.0} );
                    
set_pev(ent,pev_renderamt240.0 );
                    
UnsetEntMover(ent);
                    
print_color(id"Unlocked [^4%d^1]"ent);
                    
set_task(0.5"removeColor"ent);
                }
            }        
        }
        case 
1:{
            new 
entbody;
            
get_user_aiming(identbody);
            
            if( 
ent == ) return PLUGIN_HANDLED;
                
            if( !
pev_valid(ent) ){
                
print_color(id"Eat for anything");    
                
adminLockBlock(id);
                return 
PLUGIN_HANDLED;
            }
            
remove_entity(ent);
        }
        case 
2:{
            
saveCloneBlock();
            
print_color(id"Recorded Blocks");
        }
        case 
3:{
            
loadCloneBlock();
            
print_color(id"Blocks loaded");    
        }
        case 
4:{
            new 
file fopen(szFile"wt");    
            
fclose(file);
        }    
        case 
5:{
            
client_cmd(id"messagemode bb_offset");
            
adminLockBlock(id);
        }
        case 
6:{
            new 
entbody;
            
get_user_aiming(identbody);
            if( !
ent ){
                
print_color(id"Eat for anything");
                
adminLockBlock(id);
                return 
PLUGIN_CONTINUE;
            }
            if( !
userBlockStart[id][0] ){
                
userBlockConnect[id] = ent;
                
userBlockStart[id][0] = true;
                
userBlockStart[id][1] = false;
                
adminLockBlock(id);
            }else{
                new 
iOrigin[3];
                
get_user_origin(idiOrigin3);

                if( !
userBlockStart[id][1]  ){
                    
IVecFVec(iOriginuserBlockConnectOrigin[0]);    
                    
userBlockStart[id][1] = true;
                    if( 
userBlockConnect[id] != ent ){
                        
entity_set_int(userBlockConnect[id], EV_INT_teament);
                    }
                    
                }else{            
                    
IVecFVec(iOriginuserBlockConnectOrigin[1]);    
                    
                    if( 
userBlockConnect[id] != ent ){
                        
entity_set_int(userBlockConnect[id], EV_INT_teament);
                    }
                    
                    new 
Float:fVec[3];
                    
fVec[0] = userBlockConnectOrigin[0][0] - userBlockConnectOrigin[1][0];
                    
fVec[1] = userBlockConnectOrigin[0][1] - userBlockConnectOrigin[1][1];
                    
fVec[2] = userBlockConnectOrigin[0][2] - userBlockConnectOrigin[1][2];
                    
entity_set_vector(userBlockConnect[id], EV_VEC_vuser1fVec);
                    
                    
BeamLight(userBlockConnectOrigin[0], userBlockConnectOrigin[1], spriteBeam002010025512875255255);
    
                    
print_color(id"Blocks have been merged");
                    
adminLockBlock(id);
                
                    
userBlockConnect[id] = 0;
                    
userBlockStart[id][0] = false;
                    
userBlockStart[id][1] = false;
                }
            }
        }
        case 
7:{
            if( 
userBlockConnect[id] == 0){                
                
print_color(id"The clipboard is empty");
                
adminLockBlock(id);
                return 
PLUGIN_CONTINUE;
            }
            
            new 
Float:fVec[3];
            
entity_get_vector(userBlockConnect[id], EV_VEC_vuser1fVec);
            
fVec[0] *=  -1.0;
            
fVec[1] *=  -1.0;
            
fVec[2] *=  -1.0;
            
entity_set_vector(userBlockConnect[id], EV_VEC_vuser1fVec);
                    
            
userBlockConnect[id] = 0;
            
userBlockStart[id][0] = false;
            
userBlockStart[id][1] = false;
            
adminLockBlock(id);
        }
        case 
8:{
            if( 
userBlockConnect[id] == 0){                
                
print_color(id"The clipboard is empty");
                
adminLockBlock(id);
                return 
PLUGIN_CONTINUE;
            }
            
            
entity_set_vector(userBlockConnect[id], EV_VEC_vuser1Float:{0.0,0.0,0.0});
                    
            
userBlockConnect[id] = 0;
            
userBlockStart[id][0] = false;
            
userBlockStart[id][1] = false;
            
adminLockBlock(id);        
        }
        
    }    
    
adminLockBlock(id);
    return 
PLUGIN_HANDLED;
}
public 
rotateBlock(id){
    new 
ent g_iOwnedEnt[id];
    
    if( 
isPlayer(ent) ) return;
    
    if( 
ent != ){            
        new 
entNew     entity_get_int(entEV_INT_team);
        if( 
entNew == ){
            
set_dhudmessage(2554285, -1.00.6506.012.0);
            
show_dhudmessage(id"--- It can not be rotated ---");
            return;
        }    
        new 
entNext     entity_get_int(entNewEV_INT_team);
        
        
        new 
Float:fFloat[3];
        
pev(entNewpev_minsfFloat);
        
set_pev(entpev_minsfFloat);
        
        
pev(entNewpev_maxsfFloat);
        
set_pev(entpev_maxsfFloat);    
    
        new 
Float:fVec[3];
        
pev(entpev_vuser1fVec);
        
fOffset[id][0] += fVec[0];
        
fOffset[id][1] += fVec[1];
        
fOffset[id][2] += fVec[2];        
        
entity_set_int(entEV_INT_modelindexentity_get_int(entNewEV_INT_modelindex));
        
entity_set_int(entEV_INT_teamentNext);    
        
pev(entNewpev_vuser1fVec);
        
set_pev(entpev_vuser1fVec);
        
//moveEnt(id);
        
    
}
}

public 
autoLoadCloneBlock(){
    
serverLetClone file_exists(szFile) ? true false;
    if (
serverLetClone) {
        
loadCloneBlock();
    }
}
public 
cloneBlockFolder(){
    new 
szDir[128], szFolder[64];
    
get_configsdir(szDirsizeof(szDir));    
    
    new const 
cloneBlock[][][] = {
        { 
"Offsetu""CloneOffset" },
        { 
"Klonowania""CloneBlock" }
    };
    
    for(new 
0sizeof(cloneBlock); ++){
    
        
format(szFoldersizeof(szFolder) - 1"%s/%s"szDircloneBlock[i][1]);
    
        if(!
dir_exists(szFolder)){
            
log_amx("=== The main folder has been created %s: %s ==="cloneBlock[i][0], cloneBlock[i][1]);
            
mkdir(szFolder);
        }
    }
    
}

public 
readOffsetBlock(){    
    new 
szOffsetFile[128];
    
formatOffsetFilePath(szOffsetFilesizeof(szOffsetFile));
    
    new 
file fopen(szOffsetFile"rt");
    if (
file != INVALID_HANDLE) {
        new 
szData[4];
        
fgets(fileszDatasizeof(szData));
        
cloneBlockOffset str_to_num(szData);
        
fclose(file);
    }
}

public 
writeOffsetBlock(){    
    new 
szOffsetFile[128];
    
formatOffsetFilePath(szOffsetFilesizeof(szOffsetFile));
    
    new 
file fopen(szOffsetFile"wt");
    if (
file != INVALID_HANDLE) {
        new 
szData[12];
        
format(szDatasizeof(szData), "%d"cloneBlockOffset);
        
fputs(fileszData);
        
fclose(file);
    }
}

public 
formatOffsetFilePath(outBuffer[], maxLen) {
    new 
szFolder[32], szMap[32];
    
get_mapname(szMapsizeof(szMap));
    
get_configsdir(szFoldersizeof(szFolder));            
    
format(outBuffermaxLen"%s/CloneOffset/%s.bb"szFolderszMap);
}

public 
loadCloneBlock() {
    new 
szData[1024];
    if (
file_exists(szFile)) {
        new 
file fopen(szFile"rt");
        if (
file == INVALID_HANDLE) {
            
log_amx("Unable to open the file for reading: %s"szFile);
            return;
        }

        new 
szType[2], szEnt[5], szOrigin[3][17], szVec[3][17], szRotate[6];
        new 
Float:fOrigin[3], Float:fVec[3];
        new 
szClass[32], szTarget[32];

        while( !
feof(file) ){    
            
            
fgets(fileszDatasizeof(szData));
            
parse(szDataszTypesizeof(szType), szEntsizeof(szEnt),
                
szOrigin[0], sizeof(szOrigin[]), szOrigin[1], sizeof(szOrigin[]),
                
szOrigin[2], sizeof(szOrigin[]), szRotatesizeof(szRotate));
                
            new 
ent str_to_num(szEnt) + cloneBlockOffset;
            
            if( !
pev_valid(ent) || ent == ) continue;
            if( 
ent == g_iEntBarrier ) continue;
                
            
entity_get_string(entEV_SZ_classnameszClasssizeof(szClass) - 1);
            
entity_get_string(entEV_SZ_targetnameszTargetsizeof(szTarget) - 1);
                
            if (!
equal(szClass"func_wall") || equal(szTarget"ignore") || equal(szTarget"barrier")) {
                continue;
            }
                
            for( new 
0;<3++ ){
                
fOrigin[i]=str_to_float(szOrigin[i]);
                
fVec[i]=str_to_float(szVec[i]);
            }
            switch( 
str_to_num(szType) ){
                case 
0:remove_entity(ent);
                case 
1:{            
                    
entity_set_int(entEV_INT_teamstr_to_num(szRotate));
                    
SetEntMover(ent2);
                    
set_pev(ent ,pev_vuser3fOrigin);    
                    
entity_set_origin(entfOrigin);
                    
entity_set_vector(entEV_VEC_vuser1fVec);
                }
                case 
2:{
                    
entity_set_int(entEV_INT_teamstr_to_num(szRotate));
                    
entity_set_vector(entEV_VEC_vuser1fVec);
                }
            }
        }
        
fclose(file);
    }
}
public 
saveCloneBlock() {
    new 
szData[256];
    new 
file fopen(szFile"wt");
    
    if (
file == INVALID_HANDLE) {
        
log_amx("Unable to open the file for writing: %s"szFile);
        return;
    }
    
    new 
szClass[10], szTarget[8];
    new 
Float:fOrigin[3], Float:fVec[3];
    
    for (new 
ent 1024ent MAXPLAYERSent--) {
        if (!
pev_valid(ent) || ent == g_iEntBarrier) {
            continue;
        }
        
        
entity_get_string(entEV_SZ_classnameszClasssizeof(szClass) - 1);
        
entity_get_string(entEV_SZ_targetnameszTargetsizeof(szTarget) - 1);
        
        if (!
equal(szClass"func_wall") || equal(szTarget"ignore") || equal(szTarget"barrier")) {
            continue;
        }
        
        
pev(entpev_originfOrigin);
        
pev(entpev_vuser1fVec);
        
        
format(szDatasizeof(szData), "%d %d %f %f %f %d %f %f %f^n"GetEntMover(ent), entfOrigin[0], fOrigin[1], fOrigin[2], entity_get_int(entEV_INT_team), fVec[0], fVec[1], fVec[2]);
        
fputs(fileszData);
    }
    
    
fclose(file);
}
    
public 
clonePrepare() {
    
readOffsetBlock();

    new 
szFolder[32], szMap[32];
    
get_mapname(szMapsizeof(szMap));
    
get_configsdir(szFoldersizeof(szFolder));

    
format(szFilesizeof(szFile), "%s/CloneBlock/%s.bb"szFolderszMap);

    
serverLetClone file_exists(szFile);
    if (
serverLetClone) {
        
loadCloneBlock();
    }
}

stock BeamLight(Float:fOriginStart[3], Float:fOriginEnd[3], spriteframestartframeratelifewidthnoisergbbrightscroll){
    
message_begin(MSG_BROADCAST,SVC_TEMPENTITY) ;
    
write_byte(TE_BEAMPOINTS);
    
engfunc(EngFunc_WriteCoord,fOriginStart[0]);
    
engfunc(EngFunc_WriteCoord,fOriginStart[1]);
    
engfunc(EngFunc_WriteCoord,fOriginStart[2]);
    
engfunc(EngFunc_WriteCoord,fOriginEnd[0]);
    
engfunc(EngFunc_WriteCoord,fOriginEnd[1]);
    
engfunc(EngFunc_WriteCoord,fOriginEnd[2]);
    
write_short(sprite);
    
write_byte(framestart);
    
write_byte(framerate);
    
write_byte(life) ;
    
write_byte(width); 
    
write_byte(noise);
    
write_byte(r);
    
write_byte(g);
    
write_byte(b);
    
write_byte(bright);
    
write_byte(scroll);
    
message_end();

__________________
amirwolf is offline
DJEarthQuake
Veteran Member
Join Date: Jan 2014
Location: Astral planes
Old 11-18-2023 , 19:11   Re: Position Ent
Reply With Quote #2

permissions
DJEarthQuake is offline
amirwolf
Senior Member
Join Date: Feb 2019
Location: Iran
Old 11-18-2023 , 23:17   Re: Position Ent
Reply With Quote #3

What kind of permission?
__________________
amirwolf is offline
fysiks
Veteran Member
Join Date: Sep 2007
Location: Flatland, USA
Old 11-19-2023 , 00:58   Re: Position Ent
Reply With Quote #4

Did you verify that it's reading your file correctly? You should debug it. Are you running the same version of the game on the same OS with the same version of AMX Mod X as the "good" server?
__________________
fysiks is offline
amirwolf
Senior Member
Join Date: Feb 2019
Location: Iran
Old 11-19-2023 , 03:04   Re: Position Ent
Reply With Quote #5

Everything is the same
Even if I want to transfer from the local server to the main server, it crashes
As if it has to be adjusted every time
It seems impossible to transfer its files
__________________

Last edited by amirwolf; 11-19-2023 at 03:05.
amirwolf is offline
fysiks
Veteran Member
Join Date: Sep 2007
Location: Flatland, USA
Old 11-19-2023 , 15:08   Re: Position Ent
Reply With Quote #6

Wait, so now it crashes? What errors do you see in the error logs?

It would probably be helpful if you posted the plugin (or a link to it) along with these files that you are transferring.
__________________
fysiks is offline
Jhob94
AMX Mod X Donor
Join Date: Jul 2012
Old 11-19-2023 , 15:58   Re: Position Ent
Reply With Quote #7

Make the files .ini instead of .bb
Change both the files and in the plugin:
"%s/CloneBlock/%s.bb", szFolder, szMap);

"%s/CloneBlock/%s.ini", szFolder, szMap);
I guess your computer has permissions to open it as text document but not the server. Try it and let us know if it works as ini file.
__________________
Jhob94 is offline
amirwolf
Senior Member
Join Date: Feb 2019
Location: Iran
Old 11-19-2023 , 17:44   Re: Position Ent
Reply With Quote #8

Still not working properly

__________________
amirwolf is offline
Jhob94
AMX Mod X Donor
Join Date: Jul 2012
Old 11-19-2023 , 17:55   Re: Position Ent
Reply With Quote #9

Then post here the errors. Also debug the plugin
__________________
Jhob94 is offline
amirwolf
Senior Member
Join Date: Feb 2019
Location: Iran
Old 11-19-2023 , 18:01   Re: Position Ent
Reply With Quote #10

There is no error
I don't see any error in the console
A saved item
bb_castle_final.ini
PHP Code:
0 338 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 337 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 336 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 335 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 334 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 333 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 332 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 331 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 330 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 329 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 328 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 327 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 326 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 325 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 324 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 323 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 322 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 321 
-12.233886 21.699035 16.000000 0 0.000000 0.000000 0.000000
0 320 
-231.078674 -116.911315 85.000000 0 0.000000 0.000000 0.000000
1 319 
-887.469360 295.219726 599.000000 102 -987.000000 -51.000000 41.000000
0 318 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 317 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 316 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 315 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 314 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 313 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 312 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 311 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
1 310 
-598.018554 -53.693222 542.000000 0 0.000000 0.000000 0.000000
0 309 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 308 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 307 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 306 103.827758 11.440856 11.000000 0 0.000000 0.000000 0.000000
0 305 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
1 304 703.521606 926.888549 47.000000 0 0.000000 0.000000 0.000000
0 303 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
1 302 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 301 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 300 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
1 299 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 298 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 297 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 296 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 295 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 294 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 293 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 292 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 291 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 290 
-221.968261 267.247619 -477.000000 0 0.000000 0.000000 0.000000
0 289 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 288 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 287 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 286 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 285 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 284 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 283 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 275 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 265 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 264 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 263 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 262 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 261 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 260 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 259 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 258 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 257 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 256 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 192 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 191 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 190 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 189 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 188 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
1 187 
-31.156791 -1211.111816 74.000000 0 0.000000 0.000000 0.000000
0 168 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 167 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 166 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 165 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 164 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 163 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 162 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
1 161 11.915649 414.301879 559.000000 0 0.000000 0.000000 0.000000
0 160 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 159 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 158 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 157 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
1 156 289.768035 
-559.480285 620.000000 0 0.000000 0.000000 0.000000
1 155 1255.962036 
-443.399597 558.000000 0 0.000000 0.000000 0.000000
0 154 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 153 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 152 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 151 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 150 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 149 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 148 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 147 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 146 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 145 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 144 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
1 143 
-1226.047363 -536.024047 605.000000 0 0.000000 0.000000 0.000000
0 142 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 141 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 140 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 139 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 138 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 137 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 136 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 135 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 134 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 133 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
1 132 554.568725 
-384.370727 76.000000 0 0.000000 0.000000 0.000000
0 131 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 130 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 129 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
1 128 453.379699 282.266265 517.000000 0 0.000000 0.000000 0.000000
0 127 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 126 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 125 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 124 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 123 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
1 122 
-41.554367 247.909255 554.000000 0 0.000000 0.000000 0.000000
0 121 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 120 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 119 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 118 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 117 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 116 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 115 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 114 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 113 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 112 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 111 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 110 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 109 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 108 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 107 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 106 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 105 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 104 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 103 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
1 102 161.535583 300.595428 560.000000 319 987.000000 47.000000 
-34.000000
0 101 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 100 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 99 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 98 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 97 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 96 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 95 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 94 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 93 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 92 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 91 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 90 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 89 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 88 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 87 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 86 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 85 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 84 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 83 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 82 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 81 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 80 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 79 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 78 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 77 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 76 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 75 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 74 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 73 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 72 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 71 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 70 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 69 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 68 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 67 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 66 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 65 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 64 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 63 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 62 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 61 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 60 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 59 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 58 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 57 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 56 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 55 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 54 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 53 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 52 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 51 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 50 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 49 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 48 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 47 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 46 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 45 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 44 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 43 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 42 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 41 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 40 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 39 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 38 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000
0 37 0.000000 0.000000 0.000000 0 0.000000 0.000000 0.000000 
__________________

Last edited by amirwolf; 11-19-2023 at 18:06.
amirwolf is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 04:36.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode