https://github.com/stormwind99/webslinger
Minecraft mod: Spiders shoot webbing at you - slinging webs from a distance, or when they hit you in melee!
https://github.com/stormwind99/webslinger
forge forge-mod minecraft minecraft-forge-mod minecraft-mod spiders
Last synced: about 1 year ago
JSON representation
Minecraft mod: Spiders shoot webbing at you - slinging webs from a distance, or when they hit you in melee!
- Host: GitHub
- URL: https://github.com/stormwind99/webslinger
- Owner: Stormwind99
- License: gpl-2.0
- Created: 2018-06-24T19:05:49.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-04-11T22:54:08.000Z (about 6 years ago)
- Last Synced: 2025-02-05T11:45:02.993Z (over 1 year ago)
- Topics: forge, forge-mod, minecraft, minecraft-forge-mod, minecraft-mod, spiders
- Language: Java
- Homepage: https://minecraft.curseforge.com/projects/web-slinger
- Size: 2.43 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Web Slinger
Spiders shoot webbing at you - slinging webs from a distance, or when they hit you in melee!
Be careful! This makes spiders more difficult foes, since you get stuck in the webbing.

## FAQ
1. How to I make my mod's spiders also sling webs? There are several different options:
* In the mod configuration, add the mob to the `Slinging:slingers` list.
* Add the `webslinger:webslinger` capability to the mob.
* Subclass `EntitySpider` for your new spider - see `EntityCaveSpider` in vanilla MC for an example.
* Adding the AIWebbingAttack task to an entity is another method: `entity.tasks.addTask(7, new AIWebbingAttack(entity));`
2. Can I sling webs myself?
* In Creative mode or with console cheat commands, create `webslinger:webbing` items and throw them like snowballs.
## Credits
* PlayerInWebMessage.java is from the [WebShooter mod](https://github.com/josephcsible/WebShooter) (which inspired this mod) by Joseph C. Sible