What's new

Video "Rainbow shader"

  • Thread starter Im a Leecher
  • Start date
  • Views 3,682
Im a Leecher

Im a Leecher

In lulz we trust
Seasoned Veteran Grizzled Veteran
Messages
1,261
Reaction score
360
Points
235
Sin$
0

I haven't seen anything about this yet. It's pretty cool if you ask me, walking around the tower with a constantly changing shader.
Destiny app can send one equip request per second, so if you set up something to loop through your shaders then you'll get this.
 
Last edited:
FineNerdsS7

FineNerdsS7

Contributor
Messages
2,255
Reaction score
516
Points
335
Sin$
0
Why you gotta tell everyone? :L

It does look fabulous.
 
NUNsLAUGHTER

NUNsLAUGHTER

Enthusiast
Messages
514
Reaction score
103
Points
95
Sin$
7
Guess you could use HiroMacro for this.
Not a glitch though, don't know why you'd think it is
 
Last edited:
Im a Leecher

Im a Leecher

In lulz we trust
Seasoned Veteran Grizzled Veteran
Messages
1,261
Reaction score
360
Points
235
Sin$
0
How can you do this?
Can someone make like a tutorial for it?
I haven't seen anything about this yet. It's pretty cool if you ask me, walking around the tower with a constantly changing shader.
Destiny app can send one equip request per second, so if you set up something to loop through your shaders then you'll get this.
 
Jakey Boy

Jakey Boy

Enthusiast
Messages
805
Reaction score
272
Points
155
Sin$
0
Haha i figured this out awhile ago, and I've noticed that if you have a galaxy s5 with 4.4 (possibly just an android in general) then the destiny app crashes when you do this, it doesn't happen every time, but it happens like 60% of the time.
What's that "something" to loop?
If you have a rooted android you can use repetiTouch, not sure about jailbroken iphones.
 
Im a Leecher

Im a Leecher

In lulz we trust
Seasoned Veteran Grizzled Veteran
Messages
1,261
Reaction score
360
Points
235
Sin$
0
PHP:
function loop_shader(){
$loadout = array();
$itemid = array_rand($loadout);
$options = array(
  'http' => array(
    'method'  => 'POST',
    'content' => '{"membershipType":"1","characterId":"","itemId":"'.$loadout[$itemid].'"}',
    'header'=>  "Content-Type: application/json\r\n" .
                "x-csrf: \r\n" .
                  "Cookie: \r\n"
    )
);

$context  = stream_context_create($options);
$result = file_get_contents('http://www.bungie.net/Platform/Destiny/EquipItem/?lc=en&fmt=true&lcin=true', false, $context);
$response = $result;
if (strpos(strtolower($response),'success') !== false) {
    sleep(1);
    loop_shader();
} else {
    echo '<br>';
    echo $response;
    die();
}
}
I won't teach you how to use this, but this is what I used.
 
R

ragingdragon4

Enthusiast
Grammar Nazi Mr. Nice Guy Seasoned Veteran
Messages
759
Reaction score
117
Points
165
Sin$
7
Can someone post a tut of the loop? I can come up with a code for this on a website, but I haven't done much on a mobile device.

PHP:
function loop_shader(){
$loadout = array();
$itemid = array_rand($loadout);
$options = array(
  'http' => array(
    'method'  => 'POST',
    'content' => '{"membershipType":"1","characterId":"","itemId":"'.$loadout[$itemid].'"}',
    'header'=>  "Content-Type: application/json\r\n" .
                "x-csrf: \r\n" .
                  "Cookie: \r\n"
    )
);

$context  = stream_context_create($options);
$result = file_get_contents('http://www.bungie.net/Platform/Destiny/EquipItem/?lc=en&fmt=true&lcin=true', false, $context);
$response = $result;
if (strpos(strtolower($response),'success') !== false) {
    sleep(1);
    loop_shader();
} else {
    echo '<br>';
    echo $response;
    die();
}
}
I won't teach you how to use this, but this is what I used.

Do you just put that into an app and you just run it until you stop it or is it just for a little?
 
flabberjack_198

flabberjack_198

Enthusiast
Messages
218
Reaction score
26
Points
70
Sin$
0
do you need a rooted android to do this? is there anyway on the computer?
 
NUNsLAUGHTER

NUNsLAUGHTER

Enthusiast
Messages
514
Reaction score
103
Points
95
Sin$
7
PHP:
function loop_shader(){
$loadout = array();
$itemid = array_rand($loadout);
$options = array(
  'http' => array(
    'method'  => 'POST',
    'content' => '{"membershipType":"1","characterId":"","itemId":"'.$loadout[$itemid].'"}',
    'header'=>  "Content-Type: application/json\r\n" .
                "x-csrf: \r\n" .
                  "Cookie: \r\n"
    )
);

$context  = stream_context_create($options);
$result = file_get_contents('http://www.bungie.net/Platform/Destiny/EquipItem/?lc=en&fmt=true&lcin=true', false, $context);
$response = $result;
if (strpos(strtolower($response),'success') !== false) {
    sleep(1);
    loop_shader();
} else {
    echo '<br>';
    echo $response;
    die();
}
}
I won't teach you how to use this, but this is what I used.
I should've paid more attention to the .json modding for gta. I forgot what I'm supposed to do :/
 
R

ragingdragon4

Enthusiast
Grammar Nazi Mr. Nice Guy Seasoned Veteran
Messages
759
Reaction score
117
Points
165
Sin$
7

I haven't seen anything about this yet. It's pretty cool if you ask me, walking around the tower with a constantly changing shader.
Destiny app can send one equip request per second, so if you set up something to loop through your shaders then you'll get this.

It keeps saying that I have to be in orbit or logged out before doing anything.
 
R

ragingdragon4

Enthusiast
Grammar Nazi Mr. Nice Guy Seasoned Veteran
Messages
759
Reaction score
117
Points
165
Sin$
7
do you need a rooted android to do this? is there anyway on the computer?
Edit: there is a way to do it on the computer. You can use his code or code your own, but from what I see so far is you have to be in the tower or orbit and no other place.
 
svc chesty

svc chesty

Newbie
Messages
23
Reaction score
3
Points
45
Sin$
7
Lol that don't really tell much. What program. I see the code but what runs the script? He said can be done on PC. How?
 
FineNerdsS7

FineNerdsS7

Contributor
Messages
2,255
Reaction score
516
Points
335
Sin$
0
Lol that don't really tell much. What program. I see the code but what runs the script? He said can be done on PC. How?
Figure it out. He provided the function to do it. It's not just for handouts.
 
R

ragingdragon4

Enthusiast
Grammar Nazi Mr. Nice Guy Seasoned Veteran
Messages
759
Reaction score
117
Points
165
Sin$
7
Anyone know how to get it to show in a mission? I can only show it in the tower or orbit.
 
Top Bottom
Login
Register