[Help Topic] My Question(s) Thread

09/25/2011 16:31 killersub#1
I'm not expecting anyone to answer ALL of these questions nor most of them, but at least some quick help for some of them. these are problems I have encountered throughout my source as I have clearly focused on them, tested them, but have not came to a conclusion on how to "handle" them or "fix" them.
well enough talk, lets ask some questions shall we?

1."Sometimes" I encounter the revive button not functioning(by functioning I mean showing up) properly as it is supposed to as usual. Yes, I have looked over this and the revive code is exactly where it is supposed to be.
Code:
client.Send(new MapStatus() { ID = client.Entity.MapID, Status = 0 });
                                            client.Entity.TransformationID = 0;
                                            client.Entity.Update(true, false, true, Game.Enums.StatusFlag.Dead);
                                            client.Entity.Hitpoints = client.Entity.MaxHitpoints;
(would be part of it)

2.Bound Conquer Points are not working as usual. by that I mean that they do not purchase anything I want to spend them on. this is how I save/load them:
Save:
Code:
.Set("BoundCPs", client.Entity.BoundConquerPoints)
Load:
Code:
client.Entity.BoundConquerPoints = r.ReadUInt32("BoundCPs");
3.The Armorers in Desert City are not letting me purchase anything when I try to buy it, could it be a bug or something else?

4.The skill "Phoenix" doesn't seem to be working properly, for example, I wield a Blade and a Sword the attack monsters but the effect doesn't show neither the exp rises.

Probably I'll have more questions later on, but I have fixed most of my questions. These are the main ones I'm concerned about. any help would be greatly appreciated with this :).