Search found 16 matches

by Zkenpachi11
Thu Apr 10, 2014 9:03 pm
Forum: Scripting
Topic: Charm
Replies: 8
Views: 3804

Re: Charm

Oh thank you, I didn't know you could do that, I usually just open the project
by Zkenpachi11
Thu Apr 10, 2014 2:20 pm
Forum: Scripting
Topic: Charm
Replies: 8
Views: 3804

Re: Charm

I'm sorry ;-;
but thank you
by Zkenpachi11
Thu Apr 10, 2014 12:09 pm
Forum: Scripting
Topic: Charm
Replies: 8
Views: 3804

Re: Charm

Right, but I don't know what those functions do. Where are the definitions to the functions?
How do I look at what charmPet() is doing?
by Zkenpachi11
Thu Apr 10, 2014 1:11 am
Forum: Scripting
Topic: Charm
Replies: 8
Views: 3804

Re: Charm

I don't know where charmability is handled? I can find stuff like if its charmed or like, jug pets and avatars/elementals but.. sorry if im just being dumb ;_;
by Zkenpachi11
Wed Apr 09, 2014 2:49 pm
Forum: Scripting
Topic: Charm
Replies: 8
Views: 3804

Charm

Does anyone know where charm is handled in the code?
Thanks

Edit: or anywhere? >.< lol
by Zkenpachi11
Tue Apr 08, 2014 3:09 pm
Forum: Custom Applications and Tools
Topic: AH Loader With Prices Based Off FFXIAH.com Data
Replies: 33
Views: 33101

Re: AH Loader With Prices Based Off FFXIAH.com Data

Add to and Clean seem to work fine for me except for the fact that no price history is shown, how can I fix this so the ah actually displays what price items are up for?
by Zkenpachi11
Tue Apr 08, 2014 2:41 pm
Forum: Scripting
Topic: mobs gil drop
Replies: 6
Views: 3612

Re: mobs gil drop

I apologize for making a whole other post, but this is what I found works.
viewtopic.php?f=19&t=1959
by Zkenpachi11
Tue Apr 08, 2014 2:37 pm
Forum: Scripting
Topic: Making all mobs drop gil
Replies: 2
Views: 2286

Re: Making all mobs drop gil

made the candropgil function always return true,

added:
min += 50;
max += 100;

to the getrandomgil function, and tested it, everything drops 50-100 gold
by Zkenpachi11
Tue Apr 08, 2014 12:29 pm
Forum: Contributing
Topic: dsweb Website Management Tool
Replies: 4
Views: 3318

Re: dsweb Website Management Tool

This seems pretty cool :)
I am kind of a newbie when it comes to PHP but I really like this kind of stuff. I am most interested in having a chat that connects to ingame chat (if that is at all possible).

Regardless, Nice job. Got anymore? (I know its been a long time on this post lol)
by Zkenpachi11
Tue Apr 08, 2014 11:31 am
Forum: Scripting
Topic: Making all mobs drop gil
Replies: 2
Views: 2286

Re: Making all mobs drop gil

hmmm... I found the gil drop in the mobentity.cpp bool CMobEntity::CanDropGil() { // smaller than 0 means drop no gil if(getMobMod(MOBMOD_GIL_MAX) < 0) return false; if(getMobMod(MOBMOD_GIL_MIN) > 0 || getMobMod(MOBMOD_GIL_MAX)) { return true; } return m_EcoSystem == SYSTEM_BEASTMEN; } Would it just...