Jump to content

Focusing Stone - Anti-115?


Deveducer

Recommended Posts

Ok, so recently I was wondering around in the code for Shangri La's easter eggs (I already know the easter eggs for Shangri La, so I am not gaining anything) and found a few interesting lines of code.


declare_sidequest_icon( "sq", "anti115", "zom_hud_icon_meteor" );

Quick Explanation, initiate icon in inventory with the variable name anti115. Use the image resource zom_hud_icon_meteor.

reward()
{
level notify("temple_sidequest_achieved");
self add_sidequest_icon("sq", "anti115");
for(i = 0; i {
if(!self HasPerk(level._sq_perk_array[i]))
{
self playsound( "evt_sq_bag_gain_perks" );
self maps\_zombiemode_perks::give_perk(level._sq_perk_array[i]);
wait(0.25);
}
}
self._retain_perks = true;

Quick Explanation - Give 7 perks, set to permanent, and give achievement

anti115 = GetEnt("sq_anti_115", "targetname");
anti115 Show();


anti115 = GetEnt("sq_anti_115", "targetname");
anti115 thread spin_115();
anti115 PlayLoopSound( "zmb_meteor_loop" );
exploder(520);
trigger = Spawn( "trigger_radius_use", anti115.origin, 0, 32, 72 );
trigger SetCursorHint( "HINT_NOICON" );


Quick Explanation - Spawn the rock, make it spin, make a looping sound to signify the rock's location.

if( IsPlayer(who) && !IsDefined(who._has_anti115))
{
who._has_anti115 = true;
who PlaySound( "zmb_meteor_activate" );

Quick Explanation - if a player has the rock, play a meteor sound.

These are only a few. Are the Treyarch coders just naming it what they want? Or are we seeing another leak like when the Shrink Ray was found in the game coding?

EDIT: Could he be using this to save somebody, or perhaps save the Illuminati?

-Deveducer

Link to comment
  • Replies 3
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use, Privacy Policy, Code of Conduct, We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. .