Search found 9 matches
- Tue Jul 17, 2018 11:09 pm
- Forum: Bugs
- Topic: Question on some bugs i found.
- Replies: 2
- Views: 12557
Re: Question on some bugs i found.
Sounds like DSSearch isn't running, or configured incorrectly.
- Wed Apr 04, 2018 8:31 pm
- Forum: Custom Applications and Tools
- Topic: Python AH Buyer / Seller / ffxiah.com scrubber
- Replies: 146
- Views: 359936
Re: Python AH Buyer / Seller / ffxiah.com scrubber
ClanMcCracken wrote:Wait, we are supposed to be using python3? The directions specifically say to use python2, dont they?
http://adamgagorik.github.io/pydarkstar ... setup.htmlStep 1: Install Python¶
GOTCHA: Make sure you use Python version 3!
- Mon Jan 29, 2018 7:26 pm
- Forum: Troubleshooting
- Topic: Item Latents not working
- Replies: 10
- Views: 9257
Re: Item Latents not working
Latents were fixed as of this commit -- https://github.com/DarkstarProject/darkstar/pull/4447 tldr: items with multiple latents only applied the first latent (eg: level 30 stats for Tamas/Rajas/Sattva) Don't know if it's in stable, but it fixed in master/whasf latest release. You shouldn't have to t...
- Sun Jan 28, 2018 11:42 pm
- Forum: Troubleshooting
- Topic: Item Latents not working
- Replies: 10
- Views: 9257
Re: Item Latents not working
Sounds like you're running an out of date version, latents were fixed a couple months ago now.
Tamas is applying the appropriate +30MP +5 INT/MND on master.
Tamas is applying the appropriate +30MP +5 INT/MND on master.
- Tue Jan 23, 2018 11:14 pm
- Forum: Troubleshooting
- Topic: WSNM weapon skills
- Replies: 14
- Views: 19717
Re: WSNM weapon skills
addLearnedWeaponskill takes unlock_id, not weaponskillid, please refer to the table i posted last page.x8jason8x wrote:player:addLearnedWeaponskill(169) in npc's event finish
I'm guessing you're wanting to unlock Black Halo, so that should actually be player:addLearnedWeaponskill(11)
- Tue Jan 23, 2018 11:09 pm
- Forum: Troubleshooting
- Topic: WSNM weapon skills
- Replies: 14
- Views: 19717
Re: WSNM weapon skills
What is the exact command you used?x8jason8x wrote:Just tried it and it crashed my server again. There's clearly a problem with this syntax. Knas says my crash.bat executed, but nothing in log again.
- Tue Jan 23, 2018 10:46 pm
- Forum: Troubleshooting
- Topic: WSNM weapon skills
- Replies: 14
- Views: 19717
Re: WSNM weapon skills
Idk, my crash log doesn't seem to be working atm, something else to fix. Really, I just need the command I'd script for unlocking them. > select name,unlock_id from weapon_skills where unlock_id != 0; +------------------+-----------+ | name | unlock_id | +------------------+-----------+ | asuran_fi...
- Tue Nov 28, 2017 1:47 pm
- Forum: Server Setup & Guides
- Topic: error last update - Ubuntu server
- Replies: 2
- Views: 4626
Re: error last update - Ubuntu server
Make sure you've installed gcc-7 and used update-alternatives to actually point to it, it's likely using gcc5 still.
add-apt-repository -y ppa:ubuntu-toolchain-r/test
apt-get update
apt-get install -y g++-7
update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 90