CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 12:29:45 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=b08f2f76bd5f35138657afbb3005ec2dd19b628a1d67fdfee7a28c2d654cf563a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22ANsP5WmoAxU9rJIlAUa2_V1A29IwovfU%22%3B%7D; HttpOnly; Path=/
cf-ray: 98ce5d65fe36e8e0-BLR
CustomPraticleWings[1.12.2] v1.0 - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Wings refresh delay, 0 is every tick.
- var pi = 0;
- function keyPressed(e){
- //When player click "~" key
- if(e.key==41){
- //If it have been started
- if(e.player.timers.has(91)){
- //Stop it
- e.player.timers.reset(91);
- e.player.timers.stop(91);
- }else{
- //Start it
- e.player.timers.forceStart(91,pi,true);
- }
- }
- }
- function timer(e){
- if(e.id==91){
- var p = e.player;
- //Set wings
- var w = wing[0];
- //Traversing the wings of the particles corresponds to each row
- for(var i = 1;i<w.line.length+1;i++){
- //Traversing the particle's specified row of particles corresponding to the search word
- for(var j = 0;j<w.line[w.line.length-i].split(",").length;j++){
- //Traverse particle entries
- for(var k = 0;k<w.particle.length;k++){
- //If the current particle search word is the corresponding entry search word
- if(w.line[w.line.length-i].split(",")[j]==w.particle[k].name){
- //Generate left wing
- p.world.spawnParticle(w.particle[k].type, p.x+(w.setting.distanceFromPlayer+w.setting.distanceBetweenParticles*j)*Math.sin((e.player.getRotation()+45)*3.14/180), p.y+(w.setting.startingY+(w.setting.distanceBetweenY*i)), p.z-(w.setting.distanceFromPlayer+w.setting.distanceBetweenParticles*j)*Math.cos((e.player.getRotation()+45)*3.14/180), 0, 0, 0, 0, 1);
- //Generate right wing
- p.world.spawnParticle(w.particle[k].type, p.x+(w.setting.distanceFromPlayer+w.setting.distanceBetweenParticles*j)*Math.sin((e.player.getRotation()-45)*3.14/180), p.y+(w.setting.startingY+(w.setting.distanceBetweenY*i)), p.z-(w.setting.distanceFromPlayer+w.setting.distanceBetweenParticles*j)*Math.cos((e.player.getRotation()-45)*3.14/180), 0, 0, 0, 0, 1);
- }
- }
- }
- }
- }
- }
- //Wings list
- var wing = [
- {
- //Wings name
- name: "Angel Wings",
- //Wings setting
- setting:{
- //The starting height of the wing
- startingY: -0.2,
- //The starting distance from the player
- distanceFromPlayer: 0.2,
- //The distance between each particle in the vertical direction.
- distanceBetweenY: 0.1,
- //The distance between each particle in the horizonal direction.
- distanceBetweenParticles: 0.08
- },
- //The ID of the particle used as a character in the line
- particle:[
- {
- //Praticle character
- name: "x" ,
- //Praticle name
- type: "enchantmenttable"
- },
- ],
- //The grid layout of the wing. use an '-' to not spawn a particle
- line:[
- "-,-,-,-,x,x,x,-,-,-",
- "-,-,-,x,x,x,x,x,-,-",
- "-,-,x,x,x,x,x,x,x,-",
- "-,x,x,x,x,x,x,x,x,-",
- "x,x,x,x,x,x,x,x,x,x",
- "x,x,x,x,x,x,x,x,x,x",
- "x,x,x,x,x,x,x,x,x,x",
- "x,x,x,x,x,x,x,x,x,x",
- "-,-,x,x,x,x,x,x,x,x",
- "-,-,-,x,x,x,x,x,x,x",
- "-,-,-,x,x,x,x,x,x,x",
- "-,-,-,-,x,x,x,x,x,x",
- "-,-,-,-,x,x,x,x,x,x",
- "-,-,-,-,-,x,x,x,x,-",
- "-,-,-,-,-,x,x,x,x,-",
- "-,-,-,-,-,-,x,x,x,-",
- "-,-,-,-,-,-,x,x,x,-",
- "-,-,-,-,-,-,-,x,x,-",
- "-,-,-,-,-,-,-,-,x,-",
- ]
- },{
- name: "Devil Wings",
- setting:{
- startingY: 0.6,
- distanceFromPlayer: 0.2,
- distanceBetweenY: 0.1,
- distanceBetweenParticles: 0.1
- },
- particle:[
- {name: "x" ,type: "reddust"},
- {name: "+" ,type: "flame"},
- ],
- line:[
- "-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,x,+",
- "-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,x,+,-",
- "-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,x,+,-,-",
- "-,-,-,-,-,-,-,-,-,-,-,-,-,-,-,x,x,x,-,-,-",
- "-,-,-,-,-,-,-,-,-,-,-,-,-,-,x,x,x,+,-,-,-",
- "-,-,-,-,-,-,-,-,-,-,-,-,-,x,x,x,+,-,-,-,-",
- "-,-,-,-,-,-,-,-,-,-,-,x,x,x,x,+,-,-,-,-,-",
- "-,-,-,-,-,-,-,-,-,-,x,x,x,+,-,-,-,-,x,+,-",
- "-,-,-,-,-,-,-,-,-,x,x,x,+,-,-,-,x,x,+,-,-",
- "-,-,-,-,-,-,-,x,x,x,+,-,-,-,-,x,x,+,-,-,-",
- "-,-,-,-,-,-,x,x,+,-,-,-,-,x,x,+,-,-,-,-,-",
- "-,-,-,-,x,x,x,+,-,-,-,x,x,x,+,-,-,-,-,-,-",
- "-,-,-,x,x,+,-,-,-,x,x,x,+,-,-,-,-,-,-,-,-",
- "-,-,x,x,x,-,-,x,x,x,+,-,-,-,-,-,x,+,-,-,-",
- "-,-,-,x,x,x,x,x,+,-,-,-,-,x,x,x,+,-,-,-,-",
- "-,-,-,-,x,x,x,+,-,-,x,x,x,x,+,-,-,-,-,-,-",
- "-,-,-,-,x,x,x,-,-,x,x,x,+,-,-,-,-,-,-,-,-",
- "-,-,-,-,-,x,x,x,x,x,+,-,-,-,-,x,+,-,-,-,-",
- "-,-,-,-,-,x,x,x,+,-,-,-,x,x,x,+,-,-,-,-,-",
- "-,-,-,-,x,x,x,+,-,-,-,x,x,+,-,-,-,-,-,-,-",
- "-,-,-,-,x,x,x,-,-,x,x,+,-,-,-,-,-,-,-,-,-",
- "-,-,-,x,x,x,x,x,x,x,+,-,-,-,-,-,-,-,-,-,-",
- "x,x,x,x,x,x,x,x,-,-,-,-,-,-,-,-,-,-,-,-,-",
- "-,x,x,-,-,-,x,x,-,-,-,-,-,-,-,-,-,-,-,-,-",
- "-,-,x,x,-,-,-,x,x,-,-,-,-,-,-,-,-,-,-,-,-",
- "-,-,-,x,x,-,-,-,x,x,-,-,-,-,-,-,-,-,-,-,-",
- "-,-,-,-,x,x,-,-,-,-,-,-,-,-,-,-,-,-,-,-,-",
- ]
- },
- ];
Advertisement
Add Comment
Please, Sign In to add comment
-
✅ Make $2500 in 20 minutes⭐⭐⭐ 2
JavaScript | 1 sec ago | 0.24 KB
-
⭐✅ MAKE $2500 IN 15 MIN⭐⭐⭐ 4
JavaScript | 1 sec ago | 0.24 KB
-
⭐✅ Marketplace Glitch ✅ Working ✅ NEVER SEEN...
JavaScript | 2 sec ago | 0.24 KB
-
✅⭐ Make $2500 in 15 minutes ✅ NEVER SEEN BEFO...
JavaScript | 11 sec ago | 0.24 KB
-
⭐⭐Exchange Exploit⭐⭐ 1
JavaScript | 12 sec ago | 0.24 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ C
JavaScript | 12 sec ago | 0.24 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ 4
JavaScript | 23 sec ago | 0.24 KB
-
✅⭐ Make huge profits on trading ⭐⭐ A
JavaScript | 23 sec ago | 0.24 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand