Official 5165 FAQ/Question thread

12/23/2009 22:37 xTheChronicx#331
I'm a noob and new to this, but how can you edit the stanima to make unlimited or so....
12/23/2009 22:41 .Guru#332
yeah you just need to change the defenition of stamina (stamina void) then edit it around. or completely remove the effect of stamina loss.
12/23/2009 22:59 WHITELIONX#333
Why is it I can /ctele to some chars but not others o.0? And have to ask again but effects like cool and supergems where do I go to play around and get them working?
12/23/2009 23:13 .Guru#334
Quote:
Originally Posted by WHITELIONX View Post
Why is it I can /ctele to some chars but not others o.0? And have to ask again but effects like cool and supergems where do I go to play around and get them working?
/ctele make sure you're entering the EXACT name of the character.

supergem effects.. make the source send for the correct effect out of the client.
12/24/2009 01:32 WHITELIONX#335
Yup /ctele TANJA and /ctele mona but nothing yet if I do /ctele lil~grrrrr it works >.< Ok well not sure about supergem effect then so I will just not bother with it rofl I mean I know it will be something to do with Character.cs but no idea where in client I would look for it? Could be c3 or ini?
12/24/2009 04:10 fullmoonmika#336
hii ^^ im new at this n i hav a problem. I got everythin loaded but when i log into the server is closes. I try redownloadin the client, server dat, and the .exe file but still the same result :x
can u help me?
12/24/2009 04:51 dextercsar#337
I have a problem Why the first and second reborn delete all the skill?
How i can fix that?
12/24/2009 04:55 Arcо#338
Quote:
Originally Posted by dextercsar View Post
I have a problem Why the first and second reborn delete all the skill?
How i can fix that?

Recode the reborn system to fit your likings.
12/24/2009 13:59 -impulse-#339
Quote:
Originally Posted by Hepatitis B View Post
yeah you just need to change the defenition of stamina (stamina void) then edit it around. or completely remove the effect of stamina loss.
replace:
Code:
public byte Stamina
        {
            get { return _Stamina; }
            set
            {
                _Stamina = value;
                if (_Stamina > 100 && BlessingLasts == 0) _Stamina = 100;
                if (_Stamina > 150 && BlessingLasts > 0) _Stamina = 150;
                if (Loaded)
                    MyClient.AddSend(Packets.Status(EntityID, Status.Stamina, _Stamina));
            }
        }
with
Code:
public byte Stamina
        {
            get { return _Stamina; }
            set
            {
                if(value > Stamina)
                    _Stamina = value;
                if (_Stamina > 100 && BlessingLasts == 0) _Stamina = 100;
                if (_Stamina > 150 && BlessingLasts > 0) _Stamina = 150;
                if (Loaded)
                    MyClient.AddSend(Packets.Status(EntityID, Status.Stamina, _Stamina));
            }
        }
12/24/2009 15:04 xTheChronicx#340
Thanks. Sorry to be a pain but when i build it says theres an error in NPCDialogue.cs
12/24/2009 15:10 dragon89928#341
Quote:
Originally Posted by xTheChronicx View Post
Thanks. Sorry to be a pain but when i build it says theres an error in NPCDialogue.cs
TO fix that problem chronic, Delete everything under the region vip new. I think it was an un compressed lady luck script. Delete all the way till you hit:

default:
{
GC.AddSend(Packets.NPCSay("Hi, I don't talk anything useful yet, my ID is " + NPC.ToString()));
GC.AddSend(Packets.NPCLink("Ok.", 255));
if (N != null)


dont delete anything after default. Then build
12/24/2009 17:45 WHITELIONX#342
[Code]
public void SuperGemEffect()
{
int into = 0;

if (Equipt[1] != null && Equipt[1] != "0")
into = 1;
else if (Equips[2] != null && Equipt[2] != "0") <<<----What should that be o.0
into = 2;
else if (Equips[3] != null && Equipt[3] != "0") <<<----What should that be o.0
into = 3;
else if (Equipt[6] != null && Equipt[6] != "0") <<<----What should that be o.0
into = 6;
else if (Equipt[8] != null && Equipt[8] != "0") <<<----What should that be o.0
into = 8;
else
return;
string[] item = Equipt[into].Split('-');
12/24/2009 17:56 -impulse-#343
Quote:
Originally Posted by WHITELIONX View Post
[Code]
public void SuperGemEffect()
{
int into = 0;

if (Equipt[1] != null && Equipt[1] != "0")
into = 1;
else if (Equips[2] != null && Equipt[2] != "0") <<<----What should that be o.0
into = 2;
else if (Equips[3] != null && Equipt[3] != "0") <<<----What should that be o.0
into = 3;
else if (Equipt[6] != null && Equipt[6] != "0") <<<----What should that be o.0
into = 6;
else if (Equipt[8] != null && Equipt[8] != "0") <<<----What should that be o.0
into = 8;
else
return;
string[] item = Equipt[into].Split('-');
LMAO!!! Sorry to say it but thats a simple lotf copy paste.... there is no arrays such as Equipt.
12/24/2009 18:43 itzswifty#344
3rd time asking..... and no reply =(

does this have any skills fixed? is reborn fixed? ( havent downloaded yet )
12/24/2009 18:56 WHITELIONX#345
Yeah I know it is o.0 But "Equiptments" does not work and I have tried changing it but don`t understand the code. I have had a look into the source but I am not a coder or programmer so I am just asking for a bit of help I mean there are other areas that need changing in the thing that I copy and pasted such as words like chaar which obviously should be char or Char