Search found 9 matches

by Zynjec
Tue Jul 17, 2018 11:09 pm
Forum: Bugs
Topic: Question on some bugs i found.
Replies: 2
Views: 8103

Re: Question on some bugs i found.

Sounds like DSSearch isn't running, or configured incorrectly.
by Zynjec
Tue May 29, 2018 10:40 am
Forum: Scripting
Topic: Text IDs
Replies: 2
Views: 2547

Re: Text IDs

by Zynjec
Wed Apr 04, 2018 8:31 pm
Forum: Custom Applications and Tools
Topic: Python AH Buyer / Seller / ffxiah.com scrubber
Replies: 146
Views: 286799

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?
Step 1: Install Python¶
GOTCHA: Make sure you use Python version 3!
http://adamgagorik.github.io/pydarkstar ... setup.html
by Zynjec
Mon Jan 29, 2018 7:26 pm
Forum: Troubleshooting
Topic: Item Latents not working
Replies: 10
Views: 6339

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...
by Zynjec
Sun Jan 28, 2018 11:42 pm
Forum: Troubleshooting
Topic: Item Latents not working
Replies: 10
Views: 6339

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.
by Zynjec
Tue Jan 23, 2018 11:14 pm
Forum: Troubleshooting
Topic: WSNM weapon skills
Replies: 14
Views: 10818

Re: WSNM weapon skills

x8jason8x wrote:player:addLearnedWeaponskill(169) in npc's event finish
addLearnedWeaponskill takes unlock_id, not weaponskillid, please refer to the table i posted last page.

I'm guessing you're wanting to unlock Black Halo, so that should actually be player:addLearnedWeaponskill(11)
by Zynjec
Tue Jan 23, 2018 11:09 pm
Forum: Troubleshooting
Topic: WSNM weapon skills
Replies: 14
Views: 10818

Re: WSNM weapon skills

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.
What is the exact command you used?
by Zynjec
Tue Jan 23, 2018 10:46 pm
Forum: Troubleshooting
Topic: WSNM weapon skills
Replies: 14
Views: 10818

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...
by Zynjec
Tue Nov 28, 2017 1:47 pm
Forum: Server Setup & Guides
Topic: error last update - Ubuntu server
Replies: 2
Views: 3381

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