Game Modding | Call of Duty: Black Ops 3 | Scripting
Kricket:
I'm trying to make a custom elevator script that works with using structs to determine how the doors move instead of just using movex or movey, as I want it to work in any orientation, but I'm not really sure what I'm doing wrong. My doors won't close, let alone have the whole elevator move up and down. Any help would be appreciated.
#using scripts\codescripts\struct;#using scripts\shared\array_shared;#using scripts\shared\callbacks_shared;#using scripts\shared\clientfield_shared;#using scripts\shared\compass;#using scripts\shared\exploder_shared;#using scripts\shared\flag_shared;#using scripts\shared\laststand_shared;#using scripts\shared\math_shared;#using scripts\shared\scene_shared;#using scripts\shared\util_shared;#using scripts\zm\_zm_perks;#insert scripts\shared\shared.gsh;#insert scripts\shared\version.gsh;#insert scripts\zm\_zm_utility.gsh;#using scripts\zm\_load;#using scripts\zm\_zm;#using scripts\zm\_zm_audio;#using scripts\zm\_zm_powerups;#using scripts\zm\_zm_utility;#using scripts\zm\_zm_weapons;#using scripts\zm\_zm_zonemgr;#using scripts\shared\ai\zombie_utility;#using scripts\zm\zm_usermap;#namespace elevator;functioninit(){levelflag::wait_till("initial_blackscreen_passed");level.elevator=GetEntArray("elevator","targetname");level.move=200;level.opentime=2;level.closetime=5;level.cooldown=0;level.location=0;level.total=GetEntArray("true","collection");threadup();threaddown();threadcall();threadcooldown();}functionup(){if(level.cooldown==0){level.up=GetEnt("e_use_up","targetname");level.upSetHintString("Hold ^3&&1^7 to use Elevator");left_door=GetEnt("door_left","targetname");right_door=GetEnt("door_right","targetname");oleft2=struct::get("left2","targetname");oright2=struct::get("right2","targetname");cleft=struct::get("center_left","targetname");cright=struct::get("center_right","targetname");struct_open_left2=oleft2GetOrigin();struct_open_right2=oright2GetOrigin();struct_close_left=cleftGetOrigin();struct_close_right=crightGetOrigin();while(1){level.upwaittill("trigger",player);threadcooldown();wait(1);left_doorMoveTo(struct_close_left,level.closetime);right_doorMoveTo(struct_close_right,level.closetime);wait(.1);foreach(blockinlevel.total){blockSetMovingPlatformEnabled(true);blockMoveZ(level.move,5);}wait(5);foreach(doorinleft_door){doorMoveTo(struct_open_left2,level.opentime);}foreach(doorinright_door){doorMoveTo(struct_open_right2,level.opentime);}level.location=1;wait(.1);}}elselevel.upSetHintString("Must wait for recharge");level.upSetCursorHint("HINT_NOICON");}functiondown(){level.down=GetEnt("e_use_down","targetname");if(level.cooldown==0){level.downSetHintString("Hold ^3&&1^7 to use Elevator");left_door=GetEntArray("door_left","targetname");right_door=GetEntArray("door_right","targetname");oleft=struct::get("left","targetname");oright=struct::get("right","targetname");cleft2=struct::get("center_left2","targetname");cright2=struct::get("center_right2","targetname");struct_open_left=oleftGetOrigin();struct_open_right=orightGetOrigin();struct_close_left2=cleft2GetOrigin();struct_close_right2=cright2GetOrigin();while(1){level.downwaittill("trigger",player);threadcooldown();wait(1);foreach(doorinleft_door){doorMoveTo(struct_close_left2,level.closetime);}foreach(doorinright_door){doorMoveTo(struct_close_right2,level.closetime);}wait(.1);foreach(blockinlevel.total){blockSetMovingPlatformEnabled(true);blockMoveZ(-level.move,5);}wait(5);foreach(doorinleft_door){doorMoveTo(struct_open_left,level.opentime);}foreach(doorinright_door){doorMoveTo(struct_open_right,level.opentime);}level.location=0;wait(.1);}}elselevel.downSetHintString("Must wait for recharge");level.downSetCursorHint("HINT_NOICON");}functioncooldown(){level.cooldown=1;wait(25);level.cooldown=0;}functioncooldown2(){level.cooldown=1;wait(15);level.cooldown=0;}functioncall(){while(1){if(level.cooldown==0){if(level.location==1){callup=GetEnt("call2","targetname");callupSetHintString("");callupSetCursorHint("HINT_NOICON");calldown=GetEnt("call1","targetname");calldownSetHintString("Hold ^3&&1^7 to call Elevator");calldownwaittill("trigger",player);left_door=GetEnt("door_left","targetname");right_door=GetEnt("door_right","targetname");oleft=struct::get("left","targetname");oright=struct::get("right","targetname");cleft2=struct::get("center_left2","targetname");cright2=struct::get("center_right2","targetname");struct_open_left=oleftGetOrigin();struct_open_right=orightGetOrigin();struct_close_left2=cleft2GetOrigin();struct_close_right2=cright2GetOrigin();wait(1);threadcooldown2();foreach(doorinleft_door){doorMoveTo(struct_close_left2,level.closetime);}foreach(doorinright_door){doorMoveTo(struct_close_right2,level.closetime);}wait(.1);foreach(blockinlevel.total){blockSetMovingPlatformEnabled(true);blockMoveZ(-level.move,5);}wait(5);foreach(doorinleft_door){doorMoveTo(struct_open_left,level.opentime);}foreach(doorinright_door){doorMoveTo(struct_open_right,level.opentime);}level.location=0;wait(.1);}if(level.location==0){calldown=GetEnt("call1","targetname");calldownSetHintString("");calldownSetCursorHint("HINT_NOICON");callup=GetEnt("call2","targetname");callupSetHintString("Hold ^3&&1^7 to call Elevator");callupwaittill("trigger",player);left_door=GetEnt("door_left","targetname");right_door=GetEnt("door_right","targetname");oleft2=struct::get("left2","targetname");oright2=struct::get("right2","targetname");cleft=struct::get("center_left","targetname");cright=struct::get("center_right","targetname");struct_open_left2=oleft2GetOrigin();struct_open_right2=oright2GetOrigin();struct_close_left=cleftGetOrigin();struct_close_right=crightGetOrigin();wait(1);threadcooldown2();foreach(doorinleft_door){doorMoveTo(struct_close_left2,level.closetime);}foreach(doorinright_door){doorMoveTo(struct_close_right2,level.closetime);}wait(.1);foreach(blockinlevel.total){blockSetMovingPlatformEnabled(true);blockMoveZ(level.move,5);}wait(5);foreach(doorinleft_door){doorMoveTo(struct_open_left,level.opentime);}foreach(doorinright_door){doorMoveTo(struct_open_right,level.opentime);}level.location=1;wait(.1);}}else{callup=GetEnt("call2","targetname");callupSetCursorHint("HINT_NOICON");calldown=GetEnt("call1","targetname");calldownSetCursorHint("HINT_NOICON");if(level.location==1){calldownSetHintString("Cannot Call, Must Recharge");}if(level.location==0){callupSetHintString("Cannot Call, Must Recharge");}}}}
As a side note, I've tried using GetEnt for the structs in the door and that doesn't seem to work either. Thanks.
Harry Bo21:
coz a "struct" isnt a "ent"
struct::get
Kricket:
coz a "struct" isnt a "ent"
struct::get
I was just saying I tried that, I have struct::get currently in my code, I was just letting people know that it wouldn't and I needed help in a different way.
That tutorial uses the movex and movey command instead of using structs for the whole thing, It doesn't function at correct orientations, I want to make one that does. So I need help knowing what's wrong with my code. I've designed a prefab and written code that should theoretically work. But right now it doesn't so I wanna know what I did wrong. Thanks.
KillJoy:
the location you're moving to (the struct) needs an origin ie
kj_keeperMoveTo(keeper_loc01.origin,1.5);
Kricket:
the location you're moving to (the struct) needs an origin ie
kj_keeperMoveTo(keeper_loc01.origin,1.5);
So I got everything working except for some reason my trigs get scrambled and trigs that shouldn't pop up do. I thought I had it all done, was making a recording to show off, and it broke on me lol. Any help would be great, thanks.
#using scripts\codescripts\struct;#using scripts\shared\array_shared;#using scripts\shared\callbacks_shared;#using scripts\shared\clientfield_shared;#using scripts\shared\compass;#using scripts\shared\exploder_shared;#using scripts\shared\flag_shared;#using scripts\shared\laststand_shared;#using scripts\shared\math_shared;#using scripts\shared\scene_shared;#using scripts\shared\util_shared;#using scripts\zm\_zm_perks;#insert scripts\shared\shared.gsh;#insert scripts\shared\version.gsh;#insert scripts\zm\_zm_utility.gsh;#using scripts\zm\_load;#using scripts\zm\_zm;#using scripts\zm\_zm_audio;#using scripts\zm\_zm_powerups;#using scripts\zm\_zm_utility;#using scripts\zm\_zm_weapons;#using scripts\zm\_zm_zonemgr;#using scripts\shared\ai\zombie_utility;#using scripts\zm\zm_usermap;#namespace elevator;functioninit(){levelflag::wait_till("initial_blackscreen_passed");level.elevator=GetEntArray("elevator","targetname");//These are all the pieces of the elevator except the doorlevel.move=200;//how high it goes or how far it dropslevel.opentime=2;//time to open doorslevel.closetime=5;//time to close doorslevel.recharge=20;//time between useslevel.location=0;//indicator of first floor or second floorlevel.cooldown=0;level.total=[];for(i=0;i<level.elevator.size;i++){level.total[level.total.size]=level.elevator[i];//this is really redundant but makes an array with elevator, originally tried adding doors and didn't work}threadup();//calling of the up functionthreaddown();//downthreadcall();//and a function for calling up or down}functionup(){if(level.cooldown==0){//placeholder froma previous triallevel.up=GetEnt("e_use_up","targetname");//Gets the trigger for the elevator to go uplevel.down=GetEnt("e_use_down","targetname");//trigger downlevel.callup=GetEnt("call2","targetname");//calling up triggerlevel.calldown=GetEnt("call1","targetname");//calling down triggerlevel.upSetHintString("Hold ^3&&1^7 to use Elevator");left_door=GetEnt("door_left","targetname");//left and right door variablesright_door=GetEnt("door_right","targetname");//setting up structs for door movementoleft2=struct::get("left2","targetname");oright2=struct::get("right2","targetname");cleft=struct::get("center_left","targetname");cright=struct::get("center_right","targetname");//finding origins of said structsstruct_open_left2=oleft2.origin;struct_open_right2=oright2.origin;struct_close_left=cleft.origin;struct_close_right=cright.origin;//while loop to wait for the elevator to go upwhile(1){level.upwaittill("trigger",player);level.upHide();//Trying to hide all the triggers so it stops breaking, ps this isn't working.level.downHide();level.calldownHide();level.callupHide();wait(1);left_doorMoveTo(struct_close_left,level.closetime);//This works, this is the door movement for it closingright_doorMoveTo(struct_close_right,level.closetime);wait(level.closetime);//this is locking the elevator together as a moving platform, and bringing the player up.for(i=0;i<level.total.size;i++){level.total[i]SetMovingPlatformEnabled(true);level.total[i]MoveZ(level.move,5);}left_doorSetMovingPlatformEnabled(true);//bringing doors with itleft_doorMoveZ(level.move,5);right_doorSetMovingPlatformEnabled(true);right_doorMoveZ(level.move,5);wait(5);left_doorMoveTo(struct_open_left2,level.opentime);//opening doorsright_doorMoveTo(struct_open_right2,level.opentime);level.location=1;//setting of what location the elevator is atIPrintLnBold("Elevator Must Recharge");wait(level.recharge);//wait to show next trigs til after wait timelevel.downShow();level.calldownShow();}}}functiondown(){level.up=GetEnt("e_use_up","targetname");//This is all the same stuff as above but for the elevator going downlevel.down=GetEnt("e_use_down","targetname");//Once again the main function of the elevator works, but for some reason the trigs get all scrambleslevel.callup=GetEnt("call2","targetname");level.calldown=GetEnt("call1","targetname");if(level.cooldown==0){level.downSetHintString("Hold ^3&&1^7 to use Elevator");left_door=GetEnt("door_left","targetname");right_door=GetEnt("door_right","targetname");oleft=struct::get("left","targetname");oright=struct::get("right","targetname");cleft2=struct::get("center_left2","targetname");cright2=struct::get("center_right2","targetname");struct_open_left=oleft.origin;struct_open_right=oright.origin;struct_close_left2=cleft2.origin;struct_close_right2=cright2.origin;while(1){level.downwaittill("trigger",player);level.upHide();level.downHide();level.callupHide();level.calldownHide();wait(1);left_doorMoveTo(struct_close_left2,level.closetime);right_doorMoveTo(struct_close_right2,level.closetime);wait(level.closetime);for(i=0;i<level.total.size;i++){level.total[i]SetMovingPlatformEnabled(true);level.total[i]MoveZ(-level.move,5);}left_doorSetMovingPlatformEnabled(true);left_doorMoveZ(-level.move,5);right_doorSetMovingPlatformEnabled(true);right_doorMoveZ(-level.move,5);wait(5);left_doorMoveTo(struct_open_left,level.opentime);right_doorMoveTo(struct_open_right,level.opentime);level.location=0;IPrintLnBold("Elevator Must Recharge");wait(level.recharge);level.upShow();level.callupShow();}}}functioncall(){while(1){//Tests for location to determine which call button will actually workif(level.location==1){//This is the call function, its probably what's causing the issue, idk if I should split it into callup and calldown? probably.callup=GetEnt("call2","targetname");calldown=GetEnt("call1","targetname");calldownSetHintString("Hold ^3&&1^7 to call Elevator");calldownShow();level.up=GetEnt("e_use_up","targetname");level.down=GetEnt("e_use_down","targetname");calldownwaittill("trigger",player);callupHide();calldownHide();level.upHide();level.downHide();left_door=GetEnt("door_left","targetname");right_door=GetEnt("door_right","targetname");oleft=struct::get("left","targetname");oright=struct::get("right","targetname");cleft2=struct::get("center_left2","targetname");cright2=struct::get("center_right2","targetname");//setting up structsstruct_open_left=oleft.origin;struct_open_right=oright.origin;struct_close_left2=cleft2.origin;struct_close_right2=cright2.origin;wait(1);left_doorMoveTo(struct_close_left2,level.closetime);right_doorMoveTo(struct_close_right2,level.closetime);wait(level.closetime);for(i=0;i<level.total.size;i++){level.total[i]SetMovingPlatformEnabled(true);level.total[i]MoveZ(-level.move,5);}left_doorSetMovingPlatformEnabled(true);left_doorMoveZ(-level.move,5);right_doorSetMovingPlatformEnabled(true);right_doorMoveZ(-level.move,5);wait(5);left_doorMoveTo(struct_open_left,level.opentime);//pretty much all the same stuffright_doorMoveTo(struct_open_right,level.opentime);level.location=0;IPrintLnBold("Elevator Must Recharge");wait(level.recharge);callupShow();level.upShow();level.downShow();}if(level.location==0){calldown=GetEnt("call1","targetname");calldownSetCursorHint("HINT_NOICON");callup=GetEnt("call2","targetname");callupShow();callupSetHintString("Hold ^3&&1^7 to call Elevator");level.up=GetEnt("e_use_up","targetname");level.down=GetEnt("e_use_down","targetname");callupwaittill("trigger",player);callupHide();calldownHide();level.upHide();level.downHide();left_door=GetEnt("door_left","targetname");right_door=GetEnt("door_right","targetname");oleft2=struct::get("left2","targetname");oright2=struct::get("right2","targetname");cleft=struct::get("center_left","targetname");cright=struct::get("center_right","targetname");struct_open_left2=oleft2.origin;struct_open_right2=oright2.origin;struct_close_left=cleft.origin;struct_close_right=cright.origin;wait(1);left_doorMoveTo(struct_close_left,level.closetime);right_doorMoveTo(struct_close_right,level.closetime);wait(level.closetime);for(i=0;i<level.total.size;i++){level.total[i]SetMovingPlatformEnabled(true);level.total[i]MoveZ(level.move,5);}left_doorSetMovingPlatformEnabled(true);left_doorMoveZ(level.move,5);right_doorSetMovingPlatformEnabled(true);right_doorMoveZ(level.move,5);wait(5);left_doorMoveTo(struct_open_left2,level.opentime);right_doorMoveTo(struct_open_right2,level.opentime);level.location=1;IPrintLnBold("Elevator Must Recharge");wait(level.recharge);calldownShow();level.upShow();level.downShow();}}}
tmk_boi:
So I got everything working except for some reason my trigs get scrambled and trigs that shouldn't pop up do. I thought I had it all done, was making a recording to show off, and it broke on me lol. Any help would be great, thanks.
#using scripts\codescripts\struct;#using scripts\shared\array_shared;#using scripts\shared\callbacks_shared;#using scripts\shared\clientfield_shared;#using scripts\shared\compass;#using scripts\shared\exploder_shared;#using scripts\shared\flag_shared;#using scripts\shared\laststand_shared;#using scripts\shared\math_shared;#using scripts\shared\scene_shared;#using scripts\shared\util_shared;#using scripts\zm\_zm_perks;#insert scripts\shared\shared.gsh;#insert scripts\shared\version.gsh;#insert scripts\zm\_zm_utility.gsh;#using scripts\zm\_load;#using scripts\zm\_zm;#using scripts\zm\_zm_audio;#using scripts\zm\_zm_powerups;#using scripts\zm\_zm_utility;#using scripts\zm\_zm_weapons;#using scripts\zm\_zm_zonemgr;#using scripts\shared\ai\zombie_utility;#using scripts\zm\zm_usermap;#namespace elevator;functioninit(){levelflag::wait_till("initial_blackscreen_passed");level.elevator=GetEntArray("elevator","targetname");//These are all the pieces of the elevator except the doorlevel.move=200;//how high it goes or how far it dropslevel.opentime=2;//time to open doorslevel.closetime=5;//time to close doorslevel.recharge=20;//time between useslevel.location=0;//indicator of first floor or second floorlevel.cooldown=0;level.total=[];for(i=0;i<level.elevator.size;i++){level.total[level.total.size]=level.elevator[i];//this is really redundant but makes an array with elevator, originally tried adding doors and didn't work}threadup();//calling of the up functionthreaddown();//downthreadcall();//and a function for calling up or down}functionup(){if(level.cooldown==0){//placeholder froma previous triallevel.up=GetEnt("e_use_up","targetname");//Gets the trigger for the elevator to go uplevel.down=GetEnt("e_use_down","targetname");//trigger downlevel.callup=GetEnt("call2","targetname");//calling up triggerlevel.calldown=GetEnt("call1","targetname");//calling down triggerlevel.upSetHintString("Hold ^3&&1^7 to use Elevator");left_door=GetEnt("door_left","targetname");//left and right door variablesright_door=GetEnt("door_right","targetname");//setting up structs for door movementoleft2=struct::get("left2","targetname");oright2=struct::get("right2","targetname");cleft=struct::get("center_left","targetname");cright=struct::get("center_right","targetname");//finding origins of said structsstruct_open_left2=oleft2.origin;struct_open_right2=oright2.origin;struct_close_left=cleft.origin;struct_close_right=cright.origin;//while loop to wait for the elevator to go upwhile(1){level.upwaittill("trigger",player);level.upHide();//Trying to hide all the triggers so it stops breaking, ps this isn't working.level.downHide();level.calldownHide();level.callupHide();wait(1);left_doorMoveTo(struct_close_left,level.closetime);//This works, this is the door movement for it closingright_doorMoveTo(struct_close_right,level.closetime);wait(level.closetime);//this is locking the elevator together as a moving platform, and bringing the player up.for(i=0;i<level.total.size;i++){level.total[i]SetMovingPlatformEnabled(true);level.total[i]MoveZ(level.move,5);}left_doorSetMovingPlatformEnabled(true);//bringing doors with itleft_doorMoveZ(level.move,5);right_doorSetMovingPlatformEnabled(true);right_doorMoveZ(level.move,5);wait(5);left_doorMoveTo(struct_open_left2,level.opentime);//opening doorsright_doorMoveTo(struct_open_right2,level.opentime);level.location=1;//setting of what location the elevator is atIPrintLnBold("Elevator Must Recharge");wait(level.recharge);//wait to show next trigs til after wait timelevel.downShow();level.calldownShow();}}}functiondown(){level.up=GetEnt("e_use_up","targetname");//This is all the same stuff as above but for the elevator going downlevel.down=GetEnt("e_use_down","targetname");//Once again the main function of the elevator works, but for some reason the trigs get all scrambleslevel.callup=GetEnt("call2","targetname");level.calldown=GetEnt("call1","targetname");if(level.cooldown==0){level.downSetHintString("Hold ^3&&1^7 to use Elevator");left_door=GetEnt("door_left","targetname");right_door=GetEnt("door_right","targetname");oleft=struct::get("left","targetname");oright=struct::get("right","targetname");cleft2=struct::get("center_left2","targetname");cright2=struct::get("center_right2","targetname");struct_open_left=oleft.origin;struct_open_right=oright.origin;struct_close_left2=cleft2.origin;struct_close_right2=cright2.origin;while(1){level.downwaittill("trigger",player);level.upHide();level.downHide();level.callupHide();level.calldownHide();wait(1);left_doorMoveTo(struct_close_left2,level.closetime);right_doorMoveTo(struct_close_right2,level.closetime);wait(level.closetime);for(i=0;i<level.total.size;i++){level.total[i]SetMovingPlatformEnabled(true);level.total[i]MoveZ(-level.move,5);}left_doorSetMovingPlatformEnabled(true);left_doorMoveZ(-level.move,5);right_doorSetMovingPlatformEnabled(true);right_doorMoveZ(-level.move,5);wait(5);left_doorMoveTo(struct_open_left,level.opentime);right_doorMoveTo(struct_open_right,level.opentime);level.location=0;IPrintLnBold("Elevator Must Recharge");wait(level.recharge);level.upShow();level.callupShow();}}}functioncall(){while(1){//Tests for location to determine which call button will actually workif(level.location==1){//This is the call function, its probably what's causing the issue, idk if I should split it into callup and calldown? probably.callup=GetEnt("call2","targetname");calldown=GetEnt("call1","targetname");calldownSetHintString("Hold ^3&&1^7 to call Elevator");calldownShow();level.up=GetEnt("e_use_up","targetname");level.down=GetEnt("e_use_down","targetname");calldownwaittill("trigger",player);callupHide();calldownHide();level.upHide();level.downHide();left_door=GetEnt("door_left","targetname");right_door=GetEnt("door_right","targetname");oleft=struct::get("left","targetname");oright=struct::get("right","targetname");cleft2=struct::get("center_left2","targetname");cright2=struct::get("center_right2","targetname");//setting up structsstruct_open_left=oleft.origin;struct_open_right=oright.origin;struct_close_left2=cleft2.origin;struct_close_right2=cright2.origin;wait(1);left_doorMoveTo(struct_close_left2,level.closetime);right_doorMoveTo(struct_close_right2,level.closetime);wait(level.closetime);for(i=0;i<level.total.size;i++){level.total[i]SetMovingPlatformEnabled(true);level.total[i]MoveZ(-level.move,5);}left_doorSetMovingPlatformEnabled(true);left_doorMoveZ(-level.move,5);right_doorSetMovingPlatformEnabled(true);right_doorMoveZ(-level.move,5);wait(5);left_doorMoveTo(struct_open_left,level.opentime);//pretty much all the same stuffright_doorMoveTo(struct_open_right,level.opentime);level.location=0;IPrintLnBold("Elevator Must Recharge");wait(level.recharge);callupShow();level.upShow();level.downShow();}if(level.location==0){calldown=GetEnt("call1","targetname");calldownSetCursorHint("HINT_NOICON");callup=GetEnt("call2","targetname");callupShow();callupSetHintString("Hold ^3&&1^7 to call Elevator");level.up=GetEnt("e_use_up","targetname");level.down=GetEnt("e_use_down","targetname");callupwaittill("trigger",player);callupHide();calldownHide();level.upHide();level.downHide();left_door=GetEnt("door_left","targetname");right_door=GetEnt("door_right","targetname");oleft2=struct::get("left2","targetname");oright2=struct::get("right2","targetname");cleft=struct::get("center_left","targetname");cright=struct::get("center_right","targetname");struct_open_left2=oleft2.origin;struct_open_right2=oright2.origin;struct_close_left=cleft.origin;struct_close_right=cright.origin;wait(1);left_doorMoveTo(struct_close_left,level.closetime);right_doorMoveTo(struct_close_right,level.closetime);wait(level.closetime);for(i=0;i<level.total.size;i++){level.total[i]SetMovingPlatformEnabled(true);level.total[i]MoveZ(level.move,5);}left_doorSetMovingPlatformEnabled(true);left_doorMoveZ(level.move,5);right_doorSetMovingPlatformEnabled(true);right_doorMoveZ(level.move,5);wait(5);left_doorMoveTo(struct_open_left2,level.opentime);right_doorMoveTo(struct_open_right2,level.opentime);level.location=1;IPrintLnBold("Elevator Must Recharge");wait(level.recharge);calldownShow();level.upShow();level.downShow();}}}
u sure u didnt make the triggers move?
Kricket:
u sure u didnt make the triggers move?
I didn't ever make the triggers move, it's not that the triggers are moving, its that after a few uses, triggers that shouldnt be popping up are and the ones that should aren't
tmk_boi:
I didn't ever make the triggers move, it's not that the triggers are moving, its that after a few uses, triggers that shouldnt be popping up are and the ones that should aren't
triggers cant really be created and i dont know what you mean so show me a gif or whatever
Kricket:
triggers cant really be created and i dont know what you mean so show me a gif or whatever
I'm using the Hide() and Show() commands to make my triggers appear and disappear depending on location of the elevator, but after a use or two the triggers that I want to appear don't and the one's I don't do appear