Modme Forums

Help Replace perk stock models with others

Game Modding | Call of Duty: Black Ops 3 | Scripting


ModmeBot:

Thread By: xdferpc
I do not know what to do with this script since I want to put the model and I do not know where



level thread new_perk_model( "vending_sleight", "specialty_fastreload" );

Underneath:
function main()
{


function new_perk_model( radiant_machine, str_name )
{
level._no_vending_machine_auto_collision = true;
level flag::wait_till( "all_players_connected" );
perk_machine_model = GetEnt( radiant_machine, "targetname" );
perk_machine_model SetModel( "tag_origin" );
level waittill( str_name+"_power_on" );
perk_machine_model SetModel( "tag_origin" );
perk_machine_model MoveZ( -1000, .05 );
}