Age Verification
This website contains age-restricted material including nudity and explicit content. By entering, you confirm being at least 18 years old or the age of majority in the jurisdiction you are accessing the website from.
I am 18+ or older - Enter
I am under 18 - Exit
Our parental controls page explains how you can easily block access to this site.

Scorsos mensajes - Pagina 278

  Forum

Wyldanimal
MODERATORE
Da In Mar 2008
17235 post(s)

iStripper Trading Cards TODAY

Tutto su iStripper
January 21, 2023, 128 risposte
@ALL
In the post from Celine called "Lana Lane Trading card is yours now" (which we can't comment on), she has said:

Turn off Your Ad Block or other security on these Sites.
You will have trouble connecting to your wallet if you leave them on.

When you Connect to your Wallet.
Your Wallet extension should pop open,
you have to Scroll Down to the Bottom and Connect or Sign to complete the connection.

I have the Metamask wallet.

I'm using the Edge browser Chrome also works.
go to the Extensions site and install the Metamask Extension.
you can get it here
https://Metamask.io

Link your wallet to Dolz.io You should have all Three Check Marks.
you can also look in your iStripper profile and see if your Wallet address is there.
Https://Dolz.io/Link

If you Had your iStripper account Linked In time to Receive the NFT
then It has already been Air Dropped to your OPenSea.io Wallet.

It will be Hidden, because you have Not yet looked at it.

Go to https://opensea.io
in the top right is a Face Icon, Click on it,
you might have to select Profile...
It will ask you to Connect to your Wallet.

Once your Wallet is connected, your openseas.io profile page should be opened.
You can always Click on the Face Icon then select Profile.

there is a list of items that you have, Or None if you are just starting.
select More
then select Hidden to see your hidden items.

You Should now See your NFT card.
Click on the Card
play with the card..
Scroll down the page
Read the Properties
Expand and read the about
Expand and read the Details

If you click on the Contract, it opens the polyscan.io site. ( you have to research How to use this site yourself)
If you click on the the Token ID it opens up the Json file.
you can see the card image URL and the card Animation URL
These are Specific Only to your NFT.

Hope this Helps.

Oh,
to see your NFT's in your Metamask Wallet go to the metamask portfolio.
https://portfolio.metamask.io/

then click on the NFT tab.

Wyldanimal
MODERATORE
Da In Mar 2008
17235 post(s)

Discussions for Scenes for Version 1.2.X Fullscreen Mode here

Tutto su iStripper
January 21, 2023, 5087 risposte
If you Change the multiplier value you can get many more random times on the clock
You were using 100 as the multiplier
But if you change it to 525600
Also some changes so the date is also random
also Added the update on the seconds to count up.


void mainImage(out vec4 O, vec2 U)

{
// Calgon - Get a random number...
// Next 3 lines will generate an integer between 0 and 100 or thereabouts
vec4 myColor = texture(iChannel0, vec2 (0, 0));
float myNum = (myColor.r ) *31536000 + ((iTime * 6.)/8.);// count seconds
int myInt = int(myNum);

// We feed that to the clock and it gives a time of up to 1:40
int t = myInt;
ivec4 i = ivec4(0); // Convert everything to integers
// End of Calgon stuff

// Back to the clock display which will treat our random number as seconds
vec2 R = iResolution.xy;
U += U - R;
U /= R.y / 3.; // Global scaling with aspect ratio correction
O-=O; // Zero the pixel

// colon blink rate
float x = U.x - U.y * .2 - 2.8, // Slight skew to slant the digits
y = --U.y;
// changed to 60 = 1 second
i.w = int(iTime * 60.) % 100 // Replace with centiseconds

// Seconds (preceded by a colon)
Z(t % 60)
C

// Minutes (preceded by a colon)
Z(t % 60)
C

// Hours
Z(t)

// Smaller digits
x /= .6;
y /= .6;
R *= .6;

// Centiseconds
x -= 14.;
y += .53
Z(i.w)

// Day (preceded by a hyphen)
x -= .8;
y += 3.
// Z(i.z)
// H(1)
Z(t)
H(1)

// Month (preceded by a hyphen)
// Z((i.y + 1)) // Is it a bug in shadertoy that we have to add one?
// H(1)
Z((t)) // Is it a bug in shadertoy that we have to add one?
H(1)

// Year
// Z(i.x % 100)
// Z(i.x / 100)
Z(t % 100)
Z(t / 100)
}


/////////////////////////////////////////////////////////////////////////////////


void main ( void )
{
mainImage ( gl_FragColor, gl_FragCoord.xy );
}

Manue
ATTREZZATURA CUSTOMER SERVICE
Da In Nov 2014
5845 post(s)