-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcancel.html
More file actions
187 lines (185 loc) · 7.47 KB
/
cancel.html
File metadata and controls
187 lines (185 loc) · 7.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="#FC7C13" name="theme-color">
<title>GMLscripts.com :: Donate</title>
<link href="/gmlscripts38.css" rel="stylesheet" type="text/css">
<link href="/favicon.png" rel="icon" type="image/png">
<link href="https://github.com/gmlscripts/scripts/commits/master.atom" rel="alternate" title="GMLscripts.com :: Script Commit History" type="application/rss+xml">
<link href="https://fonts.googleapis.com/css?family=Paytone+One%7CABeeZee%7CSource+Code+Pro" rel="stylesheet">
<script type="text/x-mathjax-config">//<![CDATA[
MathJax.Hub.Config({extensions:["tex2jax.js"],jax:["input/TeX","output/HTML-CSS"],tex2jax:{inlineMath:[["\\(","\\)"],['[tex]','[/tex]']],displayMath:[['$$','$$'],["\\[","\\]"]],processEscapes:true},"HTML-CSS":{availableFonts:["TeX"]},menuSettings:{zoom:"Click"},MathZoom:{styles:{"#MathJax_Zoom":{"background-color":"#222","box-shadow":"0px 0px 15px #AAAAAA","-webkit-box-shadow":"0px 0px 15px #AAAAAA","-moz-box-shadow":"0px 0px 15px #AAAAAA","-khtml-box-shadow":"0px 0px 15px #AAAAAA",}}}});
MathJax.Hub.Queue(function () { showMathJax(); } );//]]></script>
<script async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
<script src="/lunr.js" tpye="text/javascript"></script>
<script src="/search.js" type="text/javascript"></script>
<script src="/gml_string.js" type="text/javascript"></script>
<script src="/gml_highlight.js" type="text/javascript"></script>
<script src="/gmlscripts38.js" type="text/javascript"></script>
</head>
<body onload="start()">
<noscript><div class="noscript">JAVASCRIPT REQUIRED</div></noscript>
<header>
<a href="/" id="home"><img alt="GMLscripts.com" height="40" src="/images/38/gmlscripts-header3d.png" width="500"></a>
<nav id="headnav">
<ul><li>
<a href="/script">Scripts</a></li><li>
<a href="/license">License</a></li><li>
<a href="/news">News</a></li><li>
<a href="/search">Search</a></li><li>
<a href="/submit">Submit</a></li><li>
<a href="/donate">Donate</a></li><li>
<a href="https://bsky.app/profile/gmlscripts.com" rel="noopener noreferrer" target="_blank">Follow</a></li>
</ul>
</nav>
</header>
<div class="wrapper">
<main>
<h1>Make A Donation</h1>
<p><img alt="Money, money, money!" class="fright" src="/images/wario.jpg" title="Money, money, money!"></p>
<h2>Changed your mind?</h2>
<p>I don't blame you. Times are tight. As much as you want to click that
"donate" button, you know deep down in your heart it will ultimately
deprive you of one or more cups of overpriced coffee at some point in
your very near future. And let's get real, why should you pay for
something that is already free? Techno-trousers, that's why.</p>
<p>C'mon, you know you want to click it.</p>
<script type="text/javascript">
var maxamt = 9999.00;
var minamt = 1.00;
function ChkAmt (obj1) { // check any qty limits on items
var amt;
amt = obj1.amount.value;
if (isNaN (amt)) {
alert ("Enter a valid number for amount");
ClrAmt (); // always clear the values!
return false;
}
if (amt < minamt) {
alert ("You must donate at least $" + minamt.toFixed(2));
ClrAmt ();
return false;
}
ClrAmt ();
return true;
}
function ClrAmt () { // Clear out the limits
maxamt = 9999.00; // not used unless you want to set some max amount.
minamt = 1.00; // set the minimum amount for a donation
}
</script>
<div id="paypal">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" onsubmit="this.target = 'paypal'; if(!ChkAmt (this)) return false;">
<p>
<span>US $ <input name="amount" size="6" type="text"></span>
</p>
<p>
($1.00 minimum donation)
<input name="cmd" type="hidden" value="_xclick">
<input name="business" type="hidden" value="gmlscripts@gmail.com">
<input name="item_name" type="hidden" value="Donation for the site">
<input name="no_shipping" type="hidden" value="1">
<input name="no_note" type="hidden" value="0">
<input name="currency_code" type="hidden" value="USD">
<input name="shipping" type="hidden" value="0">
<input name="tax" type="hidden" value="0">
<input name="return" type="hidden" value="https://www.gmlscripts.com/completed">
<input name="cancel_return" type="hidden" value="https://www.gmlscripts.com/cancel">
</p>
<p>
<input align="top" alt="Donate" border="0" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" type="image">
</p>
</form>
<p>
<small>GMLscripts.com is not a charity. Donations are not tax deductable.</small>
</p>
</div>
</main>
<nav id="sidenav">
<div>
<span>Scripts</span>
<ul class="accordion" id="Scripts">
<li class="computation" id="computation">
<a href="#computation">Computation</a>
<ul>
<li><a href="/script/Computation/Base_Conversion/">Base Conversion</a></li>
<li><a href="/script/Computation/Bitwise/">Bitwise</a></li>
<li><a href="/script/Computation/Data_Encoding/">Data Encoding</a></li>
<li><a href="/script/Computation/Data_Encryption/">Data Encryption</a></li>
<li><a href="/script/Computation/Data_Hashing/">Data Hashing</a></li>
<li><a href="/script/Computation/Date-Time/">Date-Time</a></li>
<li><a href="/script/Computation/Geometry/">Geometry</a></li>
<li><a href="/script/Computation/Parametric_Functions/">Parametric Functions</a></li>
<li><a href="/script/Computation/Probability/">Probability</a></li>
<li><a href="/script/Computation/Real_Numbers/">Real Numbers</a></li>
<li><a href="/script/Computation/Strings/">Strings</a></li>
</ul>
</li>
<li class="data_structures" id="data_structures">
<a href="#data_structures">Data Structures</a>
<ul>
<li><a href="/script/Data_Structures/Arrays/">Arrays</a></li>
<li><a href="/script/Data_Structures/Grids/">Grids</a></li>
<li><a href="/script/Data_Structures/Lists/">Lists</a></li>
<li><a href="/script/Data_Structures/Maps/">Maps</a></li>
</ul>
</li>
<li class="files" id="files">
<a href="#files">Files</a>
<ul>
<li><a href="/script/Files/Input_and_Output/">Input and Output</a></li>
</ul>
</li>
<li class="game_play" id="game_play">
<a href="#game_play">Game Play</a>
<ul>
<li><a href="/script/Game_Play/Artificial_Intelligence/">Artificial Intelligence</a></li>
<li><a href="/script/Game_Play/Collisions/">Collisions</a></li>
<li><a href="/script/Game_Play/Instances/">Instances</a></li>
<li><a href="/script/Game_Play/Movement/">Movement</a></li>
</ul>
</li>
<li class="graphics" id="graphics">
<a href="#graphics">Graphics</a>
<ul>
<li><a href="/script/Graphics/Color/">Color</a></li>
<li><a href="/script/Graphics/Drawing/">Drawing</a></li>
<li><a href="/script/Graphics/Shaders/">Shaders</a></li>
<li><a href="/script/Graphics/Sprites/">Sprites</a></li>
<li><a href="/script/Graphics/Surfaces/">Surfaces</a></li>
<li><a href="/script/Graphics/Text/">Text</a></li>
</ul>
</li>
<li class="interaction" id="interaction">
<a href="#interaction">Interaction</a>
<ul>
<li><a href="/script/Interaction/Gamepad/">Gamepad</a></li>
<li><a href="/script/Interaction/Mouse/">Mouse</a></li>
</ul>
</li>
<li class="platform" id="platform">
<a href="#platform">Platform</a>
<ul>
<li><a href="/script/Platform/Device/">Device</a></li>
</ul>
</li>
<li class="resources" id="resources">
<a href="#resources">Resources</a>
<ul>
<li><a href="/script/Resources/Management/">Management</a></li>
<li><a href="/script/Resources/Sprites/">Sprites</a></li>
</ul>
</li>
</ul>
<span></span>
</div>
</nav>
</div>
<footer>
copyright © 2007-2026, xot media multimixing
<span><img alt="X" src="/images/38/x.png" title="web by xot"></span>
</footer>
</body>
</html>