Pankajpegu07 commited on
Commit
2156bac
·
verified ·
1 Parent(s): e0a6202

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +226 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Dra
3
- emoji: 📉
4
- colorFrom: green
5
  colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: dra
3
+ emoji: 🐳
4
+ colorFrom: purple
5
  colorTo: gray
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,226 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Free Fire MAX - Aim Assist Concept</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .radar-scan {
11
+ position: relative;
12
+ overflow: hidden;
13
+ }
14
+ .radar-scan::after {
15
+ content: '';
16
+ position: absolute;
17
+ top: 0;
18
+ left: 0;
19
+ right: 0;
20
+ bottom: 0;
21
+ background: linear-gradient(
22
+ to bottom,
23
+ rgba(0, 255, 0, 0) 0%,
24
+ rgba(0, 255, 0, 0.1) 50%,
25
+ rgba(0, 255, 0, 0) 100%
26
+ );
27
+ animation: radarScan 2s linear infinite;
28
+ transform-origin: top;
29
+ }
30
+ @keyframes radarScan {
31
+ 0% {
32
+ transform: translateY(-100%);
33
+ }
34
+ 100% {
35
+ transform: translateY(100%);
36
+ }
37
+ }
38
+ .target-box {
39
+ animation: pulse 1.5s infinite;
40
+ }
41
+ @keyframes pulse {
42
+ 0% {
43
+ box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
44
+ }
45
+ 70% {
46
+ box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
47
+ }
48
+ 100% {
49
+ box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
50
+ }
51
+ }
52
+ </style>
53
+ </head>
54
+ <body class="bg-gray-900 text-green-400 min-h-screen">
55
+ <div class="container mx-auto px-4 py-8">
56
+ <div class="flex flex-col items-center">
57
+ <div class="flex items-center mb-8">
58
+ <img src="https://via.placeholder.com/50" alt="Free Fire Logo" class="w-12 h-12 mr-3">
59
+ <h1 class="text-3xl font-bold">Free Fire MAX</h1>
60
+ </div>
61
+
62
+ <div class="w-full max-w-4xl bg-gray-800 rounded-lg overflow-hidden shadow-lg mb-8">
63
+ <div class="p-4 bg-gray-700 flex justify-between items-center">
64
+ <h2 class="text-xl font-semibold">Headshot Aim Assist System</h2>
65
+ <div class="flex items-center">
66
+ <span class="mr-2">Status:</span>
67
+ <span class="px-3 py-1 bg-green-600 rounded-full text-xs font-bold">ACTIVE</span>
68
+ </div>
69
+ </div>
70
+
71
+ <div class="p-4">
72
+ <div class="relative radar-scan bg-gray-900 rounded-lg h-96 mb-6">
73
+ <!-- Game view with targets -->
74
+ <div class="absolute top-1/4 left-1/4 w-16 h-24 border-2 border-red-500 rounded">
75
+ <div class="target-box absolute -top-2 -left-2 w-20 h-8 border-2 border-green-500 rounded-full"></div>
76
+ <div class="text-red-500 text-xs absolute -bottom-6 left-0 right-0 text-center">ENEMY</div>
77
+ </div>
78
+ <div class="absolute top-1/3 right-1/4 w-16 h-24 border-2 border-red-500 rounded">
79
+ <div class="target-box absolute -top-2 -left-2 w-20 h-8 border-2 border-green-500 rounded-full"></div>
80
+ <div class="text-red-500 text-xs absolute -bottom-6 left-0 right-0 text-center">ENEMY</div>
81
+ </div>
82
+ <div class="absolute bottom-1/4 left-1/2 w-16 h-24 border-2 border-red-500 rounded">
83
+ <div class="target-box absolute -top-2 -left-2 w-20 h-8 border-2 border-green-500 rounded-full"></div>
84
+ <div class="text-red-500 text-xs absolute -bottom-6 left-0 right-0 text-center">ENEMY</div>
85
+ </div>
86
+
87
+ <!-- Crosshair -->
88
+ <div class="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-8 h-8">
89
+ <div class="absolute top-0 left-1/2 transform -translate-x-1/2 w-1 h-4 bg-green-500"></div>
90
+ <div class="absolute bottom-0 left-1/2 transform -translate-x-1/2 w-1 h-4 bg-green-500"></div>
91
+ <div class="absolute left-0 top-1/2 transform -translate-y-1/2 w-4 h-1 bg-green-500"></div>
92
+ <div class="absolute right-0 top-1/2 transform -translate-y-1/2 w-4 h-1 bg-green-500"></div>
93
+ <div class="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-2 h-2 rounded-full bg-green-500"></div>
94
+ </div>
95
+
96
+ <!-- Lock indicator -->
97
+ <div class="absolute top-4 right-4 bg-black bg-opacity-70 text-green-400 px-2 py-1 rounded text-sm flex items-center">
98
+ <i class="fas fa-lock mr-1"></i> HEAD LOCKED
99
+ </div>
100
+ </div>
101
+
102
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-4 mb-6">
103
+ <div class="bg-gray-700 p-4 rounded-lg">
104
+ <h3 class="font-semibold mb-2 flex items-center">
105
+ <i class="fas fa-bullseye mr-2"></i> Aim Precision
106
+ </h3>
107
+ <div class="flex items-center">
108
+ <input type="range" min="1" max="100" value="95" class="w-full h-2 bg-gray-600 rounded-lg appearance-none cursor-pointer">
109
+ <span class="ml-2 text-sm">95%</span>
110
+ </div>
111
+ </div>
112
+
113
+ <div class="bg-gray-700 p-4 rounded-lg">
114
+ <h3 class="font-semibold mb-2 flex items-center">
115
+ <i class="fas fa-brain mr-2"></i> Prediction
116
+ </h3>
117
+ <div class="flex items-center">
118
+ <input type="range" min="1" max="100" value="85" class="w-full h-2 bg-gray-600 rounded-lg appearance-none cursor-pointer">
119
+ <span class="ml-2 text-sm">85%</span>
120
+ </div>
121
+ </div>
122
+
123
+ <div class="bg-gray-700 p-4 rounded-lg">
124
+ <h3 class="font-semibold mb-2 flex items-center">
125
+ <i class="fas fa-shield-alt mr-2"></i> Stealth Mode
126
+ </h3>
127
+ <label class="relative inline-flex items-center cursor-pointer">
128
+ <input type="checkbox" checked class="sr-only peer">
129
+ <div class="w-11 h-6 bg-gray-600 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-green-600"></div>
130
+ <span class="ml-3 text-sm">ON</span>
131
+ </label>
132
+ </div>
133
+ </div>
134
+
135
+ <div class="bg-gray-700 p-4 rounded-lg mb-6">
136
+ <h3 class="font-semibold mb-3 flex items-center">
137
+ <i class="fas fa-cog mr-2"></i> Advanced Settings
138
+ </h3>
139
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
140
+ <div>
141
+ <label class="block text-sm mb-1">Target Selection</label>
142
+ <select class="w-full bg-gray-600 border border-gray-500 rounded px-3 py-2 text-sm">
143
+ <option>Closest Enemy</option>
144
+ <option selected>Head Priority</option>
145
+ <option>Most Dangerous</option>
146
+ <option>Random</option>
147
+ </select>
148
+ </div>
149
+ <div>
150
+ <label class="block text-sm mb-1">Trigger Key</label>
151
+ <select class="w-full bg-gray-600 border border-gray-500 rounded px-3 py-2 text-sm">
152
+ <option>Right Mouse</option>
153
+ <option selected>Shift Key</option>
154
+ <option>Side Mouse Button</option>
155
+ <option>Auto Trigger</option>
156
+ </select>
157
+ </div>
158
+ <div>
159
+ <label class="block text-sm mb-1">FOV Distance</label>
160
+ <input type="range" min="50" max="500" value="200" class="w-full h-2 bg-gray-600 rounded-lg appearance-none cursor-pointer">
161
+ <div class="flex justify-between text-xs mt-1">
162
+ <span>50m</span>
163
+ <span>200m</span>
164
+ <span>500m</span>
165
+ </div>
166
+ </div>
167
+ <div>
168
+ <label class="block text-sm mb-1">Smoothness</label>
169
+ <input type="range" min="1" max="10" value="6" class="w-full h-2 bg-gray-600 rounded-lg appearance-none cursor-pointer">
170
+ <div class="flex justify-between text-xs mt-1">
171
+ <span>Fast</span>
172
+ <span>Normal</span>
173
+ <span>Slow</span>
174
+ </div>
175
+ </div>
176
+ </div>
177
+ </div>
178
+
179
+ <div class="flex flex-col sm:flex-row justify-between items-center">
180
+ <div class="mb-4 sm:mb-0">
181
+ <button class="bg-green-600 hover:bg-green-700 text-white px-6 py-2 rounded-lg font-semibold mr-3">
182
+ <i class="fas fa-play mr-2"></i> Activate
183
+ </button>
184
+ <button class="bg-gray-600 hover:bg-gray-700 text-white px-6 py-2 rounded-lg font-semibold">
185
+ <i class="fas fa-pause mr-2"></i> Pause
186
+ </button>
187
+ </div>
188
+ <div class="text-sm text-gray-400">
189
+ <i class="fas fa-exclamation-triangle mr-1"></i> Use at your own risk
190
+ </div>
191
+ </div>
192
+ </div>
193
+ </div>
194
+
195
+ <div class="w-full max-w-4xl bg-gray-800 rounded-lg overflow-hidden shadow-lg">
196
+ <div class="p-4 bg-gray-700">
197
+ <h2 class="text-xl font-semibold">Statistics</h2>
198
+ </div>
199
+ <div class="p-4 grid grid-cols-2 md:grid-cols-4 gap-4">
200
+ <div class="bg-gray-700 p-3 rounded-lg text-center">
201
+ <div class="text-3xl font-bold text-green-400">87%</div>
202
+ <div class="text-xs text-gray-400">Headshot Rate</div>
203
+ </div>
204
+ <div class="bg-gray-700 p-3 rounded-lg text-center">
205
+ <div class="text-3xl font-bold text-green-400">2.4s</div>
206
+ <div class="text-xs text-gray-400">Avg. Lock Time</div>
207
+ </div>
208
+ <div class="bg-gray-700 p-3 rounded-lg text-center">
209
+ <div class="text-3xl font-bold text-green-400">143</div>
210
+ <div class="text-xs text-gray-400">Kills Today</div>
211
+ </div>
212
+ <div class="bg-gray-700 p-3 rounded-lg text-center">
213
+ <div class="text-3xl font-bold text-green-400">0</div>
214
+ <div class="text-xs text-gray-400">Reports</div>
215
+ </div>
216
+ </div>
217
+ </div>
218
+
219
+ <div class="mt-8 text-center text-gray-500 text-sm">
220
+ <p class="mb-2">This is a conceptual demonstration only. Actual use of aim assist cheats violates Free Fire MAX's terms of service.</p>
221
+ <p>Using third-party software to gain unfair advantage may result in account suspension or ban.</p>
222
+ </div>
223
+ </div>
224
+ </div>
225
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Pankajpegu07/dra" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
226
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Make a auto aim assist on head system for free fire max which target the head of the enemy