Aller au contenu

Messages recommandés

Posté(e)

Version de Minecraft : 1.15.2
Version de Skript : 2.X.X

Type du skript : Chance quand on casse un block

Description du script :

Bonjour / Bonsoir, je voudrais faire un skript que lorsque on fait click droit sur un block de stripped jungle log on a 49% de chance de drop du diamant et 50% de chance de drop du fer et 1% de drop de l'or. Puis que le block respawn après 20sec. J'ai fait un debut de code seulement parfois le block ne me donne rien ou donne de l'or et du diamant ensemble.

on rightclick with diamond axe:
    if event-block is stripped jungle log:
        set event-block to air
        send "&6Ouverture..."
        chance of 49%:
            drop 10 diamond at event-block  
        chance of 50%:
            drop 10 iron ingot at event-block
        chance of 1%:
            drop 10 gold ingot at event-block

Merci d'avance a vous.

  • 1 mois après...
Posté(e)
on rightclick with diamond axe on stripped jungle log:
    set event-block to air
    send "&6Ouverture..." to player
    chance of 49%:
        drop 10 diamond at event-block
        wait 20 seconds
        set event-block to stripped jungle log
        stop
    chance of 50%:
        drop 10 iron ingot at event-block
        wait 20 seconds
        set event-block to stripped jungle log
        stop
    drop 10 gold ingot at event-block
    wait 20 seconds
    set event-block to stripped jungle log
    stop
 
Voila dit moi si ça marche.
  • 2 mois après...
Posté(e)

Hey,
Voici le code un peu modifié (Testé - il fonctionne)

on rightclick with diamond axe on stripped jungle log:
	cancel event
	set event-block to air
	send "&6Ouverture..." to player
	set {_r} to a random integer between 1 and 100
	if {_r} is between 1 and 50:
		drop 10 diamond at event-block
	else if {_r} is between 51 and 99:
		drop 10 iron ingot at event-block
	else if {_r} is 100:
		drop 10 gold ingot at event-block
	wait 20 seconds
	set event-block to stripped jungle log
	stop

 

Invité
Ce sujet ne peut plus recevoir de nouvelles réponses.
×
×
  • Créer...

Information importante

Nous avons placé des cookies sur votre appareil pour aider à améliorer ce site. Vous pouvez choisir d’ajuster vos paramètres de cookie, sinon nous supposerons que vous êtes d’accord pour continuer.