Search found 16 matches
Re: Charm
Oh thank you, I didn't know you could do that, I usually just open the project
Re: Charm
I'm sorry ;-;
but thank you
but thank you
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?
How do I look at what charmPet() is doing?
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 ;_;
Charm
Does anyone know where charm is handled in the code?
Thanks
Edit: or anywhere? >.< lol
Thanks
Edit: or anywhere? >.< lol
- 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: 49794
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?
- Tue Apr 08, 2014 2:41 pm
- Forum: Scripting
- Topic: mobs gil drop
- Replies: 6
- Views: 5945
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
viewtopic.php?f=19&t=1959
- Tue Apr 08, 2014 2:37 pm
- Forum: Scripting
- Topic: Making all mobs drop gil
- Replies: 2
- Views: 3286
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
added:
min += 50;
max += 100;
to the getrandomgil function, and tested it, everything drops 50-100 gold
- Tue Apr 08, 2014 12:29 pm
- Forum: Contributing
- Topic: dsweb Website Management Tool
- Replies: 4
- Views: 5025
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)
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)
- Tue Apr 08, 2014 11:31 am
- Forum: Scripting
- Topic: Making all mobs drop gil
- Replies: 2
- Views: 3286
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...