Npc Request

12/05/2010 09:55 smithms13#1
I need help on a NPC for CPs leveling.

I want a NPC people can pay for cps from levels 130-137.

If anyone can help that would be amazing!

My MSN is : [Only registered and activated users can see links. Click Here To Register...]
12/05/2010 12:43 .Beatz#2
If you search the forum there is already this released, also why not make it yourself?

It is very easy to make and if you really don't know how to do it then I would suggest reading some tuts on c# before you go any further with your server.
12/06/2010 06:45 smithms13#3
I looked and i search but i didn't see one man.
12/06/2010 06:57 pro4never#4
case number:
if(charactervariable.Cps > amount to pay&& charactervariable.level > min level && Charactervariable.level < max level)
{
Charactervariable.level++;
Character.variable.cps -= amount to pay;
}
break;


add in some text and you're good to go?


You don't state which source you are using nor anything else (I assume lotf, eewe) but simply fill in the blanks to any generic npc and you're good to go... I honestly can't understand why simple npcs seem beyond many ppl on epvp when there are a billion guides and examples....

</rant>
12/06/2010 08:58 xScott#5
Quote:
Originally Posted by pro4never View Post
case number:
if(charactervariable.Cps > amount to pay&& charactervariable.level > min level && Charactervariable.level < max level)
{
Charactervariable.level++;
Character.variable.cps -= amount to pay;
}
break;


add in some text and you're good to go?


You don't state which source you are using nor anything else (I assume lotf, eewe) but simply fill in the blanks to any generic npc and you're good to go... I honestly can't understand why simple npcs seem beyond many ppl on epvp when there are a billion guides and examples....

</rant>
indeed, this was on the front page:
[Only registered and activated users can see links. Click Here To Register...]