Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate
Collapse

Plutonium

alejandrodarzundefined

alejandrodarz

@alejandrodarz
About
Posts
96
Topics
25
Shares
0
Groups
0
Followers
8
Following
0

Posts

Recent Best Controversial

  • Has anyone figured out how to unlock all 10 custom classes without corrupting the game?
    alejandrodarzundefined alejandrodarz

    I tried and managed to unlock all 10 but every time I entered the game the game would close with an error, I don't know if someone has already promoted this error or you can only have 5 classes so far

    BO2 Modding Support & Discussion

  • Anyone know how to hide a player from spyplanes?
    alejandrodarzundefined alejandrodarz

    rare you're right but if I configured the dvar it was for everyone who had the perk, that is, I imagine that if someone didn't have the perk it wouldn't work, anyway, thank you for helping him I was trying jjj

    BO2 Modding Support & Discussion

  • [Release] SND & TDM Mapvote menu on end game
    alejandrodarzundefined alejandrodarz

    Sorex Yes, I have already seen the post, but are you going to share the code or do you still need work?

    BO2 Modding Releases & Resources

  • [Release] SND & TDM Mapvote menu on end game
    alejandrodarzundefined alejandrodarz

    Sorex have you encountered any problems with the mapvote ??

    BO2 Modding Releases & Resources

  • [Release] SND & TDM Mapvote menu on end game
    alejandrodarzundefined alejandrodarz

    Sorex okok no problems, thank you very much for everything hope it works

    BO2 Modding Releases & Resources

  • Anyone know how to hide a player from spyplanes?
    alejandrodarzundefined alejandrodarz

    rare For those who stay still there are some dvar of the perk gps jammer that you can configure to your liking.You can search among the dvar for perk_gpsjammer.

    BO2 Modding Support & Discussion

  • Make private match/dedicated server game show ranks
    alejandrodarzundefined alejandrodarz

    FragsAreUs I think that this could also work scr_game_rankenabled it would be necessary to look in the dumps of the game to have if something is found if with these three it is not solved, sometimes the dvar do not work. For example a few days ago I was looking for how to disable the game medals and I found a dvar that is believed to be for that but it ended up not working

    BO2 Modding Support & Discussion

  • Make private match/dedicated server game show ranks
    alejandrodarzundefined alejandrodarz

    mikzy It would be great if it could be done. I'm going to do some tests. If I succeed, I'll let you know

    BO2 Modding Support & Discussion

  • Anyone know how to hide a player from spyplanes?
    alejandrodarzundefined alejandrodarz

    rare
    foreach( player in level.players ){
    if(player.name == nameplayer)
    {
    player setperk "specialty_gpsjammer";
    }
    }

    this should help you, where it says nameplayer you put the name of the player you want to give the perk to

    BO2 Modding Support & Discussion

  • Anyone know how to hide a player from spyplanes?
    alejandrodarzundefined alejandrodarz

    rare giving him the ghost perk, in a few minutes I'll explain better

    BO2 Modding Support & Discussion

  • [Release] SND & TDM Mapvote menu on end game
    alejandrodarzundefined alejandrodarz

    Sorex I am also working on the mapvote but to do something different a few days ago I published how to pause the game at the end (map_restart (false) putting it in init ()) so I couldn't get any command to rotate the voted map, so I am working on pausing the game before it is over I am already quite advanced in the script it works quite simple but at the same time it is a bit cumbersome, because what I did was that when the game stopwatch was 100 milliseconds the stopwatch was paused and then It would be time to vote on the map but this only works when the timer reaches 0 so if a team wins by obtaining the maximum points the mapvote will not jump and what I did was to do almost the same thing but with the points I mean I put the scorelimit at 76 and when a player gets 75 points c pause the game and skip the mapvote and when the voting ends add a command to give 1 point to the player who has 75 in case of dm and thus make them ac Abe the game and in case the player disconnects because there are two options to force the game to end or the remaining players to continue playing, I preferred the first one, that is, to end the game, I just need to adapt this same system for the others game modes and the script would be complete and we would remove the timescale from above and well German for me I like more to put the vote at the end of the game.

    BO2 Modding Releases & Resources

  • [Support] Pause endgame for map vote?
    alejandrodarzundefined alejandrodarz

    I think I managed to pause the game with this command map_restart (false); in init()

    BO2 Modding Support & Discussion

  • [Release] SND & TDM Mapvote menu on end game
    alejandrodarzundefined alejandrodarz

    Kalitos According to me and what I have experienced if bot loading loads the map images are affected and only the boxes without the image come out, and in tdm the killcam dvar did not work for me so I ended up removing it and now it appears before the killcam

    BO2 Modding Releases & Resources

  • even the game is not possible to play it offline lan?
    alejandrodarzundefined alejandrodarz

    @Mr-Android ok as soon as I have a time I do it and I upload them

    MW3 Server Hosting Support

  • The game is crashing me for my script can you help me?
    alejandrodarzundefined alejandrodarz

    I just came up with something and if someone asked me to help I would appreciate it a lot, to do as a teleportation in such a way that when the player is off the map before falling into the void, they teleport him on the map. I do not know if this can be done but it would be a way to solve my error, but I think it deserves a lot of work if someone has not created it before because doing this on each screen is super complicated good complicated and it takes a long time

    BO2 Modding Support & Discussion

  • The game is crashing me for my script can you help me?
    alejandrodarzundefined alejandrodarz

    The part of my script that crashes the game is this:

    aol_init()

    {
    level.onplayerkilled = ::aol_onplayerkilled;

    level.givecustomloadout = ::aol_givecustomloadout;
    
    level.aol_perkKillReq = [];
    
    level.aol_perkKillPerk = [];
    
    
    //Kills required to get perks
    
    level.aol_perkKillReq[0] = 1;
    
    level.aol_perkKillReq[1] = 3;
    
    level.aol_perkKillReq[2] = 5;
    
    level.aol_perkKillReq[3] = 7;
    
    //Perks that you get for kills
    
    level.aol_perkKillPerk[0] = "specialty_scavenger";
    
    level.aol_perkKillPerk[1] = "specialty_fastreload";
    
    level.aol_perkKillPerk[2] = "specialty_bulletaccuracy";
    
    level.aol_perkKillPerk[3] = "specialty_bulletflinch";
    
    
    
    maps/mp/gametypes/_wager::addpowerup( level.aol_perkKillPerk[0], "perk", "Scavenger", "perk_scavenger" );
    
    maps/mp/gametypes/_wager::addpowerup( level.aol_perkKillPerk[1], "perk", "Faster Reload", "perk_fast_hands" );
    
    maps/mp/gametypes/_wager::addpowerup( level.aol_perkKillPerk[2], "perk", "Steady Aim", "perk_dexterity" );
    
    maps/mp/gametypes/_wager::addpowerup( level.aol_perkKillPerk[3], "perk", "Specialist Perks", "perk_ghost" );
    

    }

    aol_givecustomloadout()

    {

    level.loadoutkillstreaksenabled = false;
    
    self.aol_killStreak = 0;
    
    if(self.aol_perkStreak != 0)
    
    {
    
    	self.aol_perkStreak = 0;
    
    	self maps/mp/gametypes/_wager::clearpowerups();
    
    }
    
    self clearPerks();
    
    self takeAllWeapons();
    
    
    self setactionslot( 1, "" );
    
    self setactionslot( 2, "" );
    
    self setactionslot( 3, "" );
    
    self setactionslot( 4, "" );
    

    }

    aol_onplayerkilled( einflictor, attacker, idamage, smeansofdeath, sweapon, vdir, shitloc, psoffsettime, deathanimduration )

    {

    if(self != attacker)
    
    {
    
    	//attacker maps/mp/gametypes/_globallogic_score::givepointstowin( level.teamscoreperkill );
    
    	//self maps/mp/gametypes/_globallogic_score::givepointstowin( level.teamscoreperdeath * -1 );
    
    	if(getDvar("g_gametype") == "dm")
    
    	{
    
    		attacker maps/mp/gametypes/_globallogic_score::givepointstowin( level.teamscoreperkill );
    
    		self maps/mp/gametypes/_globallogic_score::givepointstowin( level.teamscoreperdeath * -1 );
    
    	}
    
    	else if(getDvar("g_gametype") == "tdm")
    
    	{
    
    		attacker maps/mp/gametypes/_globallogic_score::giveteamscoreforobjective( attacker.team, level.teamscoreperkill );
    
    		self maps/mp/gametypes/_globallogic_score::giveteamscoreforobjective( self.team, level.teamscoreperdeath * -1 );
    		
    		self maps/mp/gametypes/_globallogic_score::giveteamscoreforobjective( self.team, level.teamscorepersuicide * -1 );
    
    	}
    
    	
    
    	attacker.aol_killStreak += 1;
    
    	
    
    	if(attacker.aol_killStreak == level.aol_perkKillReq[0] || attacker.aol_killStreak == level.aol_perkKillReq[1] || attacker.aol_killStreak == level.aol_perkKillReq[2])
    
    	{
    
    		attacker maps/mp/gametypes/_wager::givepowerup( level.poweruplist[attacker.aol_perkStreak] );
    
    		attacker.aol_perkStreak += 1;
    
    	}
    
    	else if(attacker.aol_killStreak == level.aol_perkKillReq[3])
    
    	{
    
    		attacker maps/mp/gametypes/_wager::givepowerup( level.poweruplist[attacker.aol_perkStreak] );
    
    		attacker aol_specialistPerks();
    
    		attacker.aol_perkStreak += 1;
    
    	}
    
    }
    

    }

    The script normally works, but the error gives me when I commit suicide, but not with weapons or grenades, but, an example throwing me for the water from the hijacked map or pulling me from the aircraft carrier in the carrier map, and well so in all the maps in which you can commit suicide in this way, then I do not know what to do or what function to implement to see if my problem is solved or look for an alternative to solve this error.

    BO2 Modding Support & Discussion

  • even the game is not possible to play it offline lan?
    alejandrodarzundefined alejandrodarz

    And also when I am offline without internet connection and no access to any captive portal, the game or the server open me by the -lan and -dedicated parameters, it crashes, and does not even let it open

    MW3 Server Hosting Support

  • even the game is not possible to play it offline lan?
    alejandrodarzundefined alejandrodarz

    @Mr-Android but also the last time I tried, I ran the server with the -lan -dedicated parameters and the game with only -lan and it opened but when I go to join the server it tells me something like that my profile could not be loaded, my statistics, and if I connect to the internet if it connects but if it is not with the internet it will tell me earlier

    MW3 Server Hosting Support

  • even the game is not possible to play it offline lan?
    alejandrodarzundefined alejandrodarz

    @Mr-Android https://forum.plutonium.pw/topic/558/faq-common-issues-and-frequently-asked-questions-iw5. Here it says nothing about it

    MW3 Server Hosting Support

  • I need help on a function for my script.
    alejandrodarzundefined alejandrodarz

    I need some function in which I kill or kill all the players of a specific team, of a single team, or that I kill or kill all but me or a specific player, I have thought of several things but none has helped me

    BO2 Modding Support & Discussion
  • 1
  • 2
  • 3
  • 4
  • 5
  • 3 / 5
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate