Request Starting level

smoochy boys on tour

BuzzBee

Dedicated Member
Dedicated Member
Jul 13, 2010
136
1
44
Does anyone know where to edit the start level on C# ? Thanks
 

FirEStorm

Mir Atlaints
Veteran
Aug 29, 2011
565
31
115
CaiRo-EGYPT
in source code search
private void NewCharacter()
{
if (Envir.StartPoints.Count == 0) return;


SetBind();


Level = 1; set this any lvl u want to start from
Hair = (byte)SMain.Envir.Random.Next(0, 9);
 
Upvote 0

booom

Dedicated Member
Dedicated Member
May 14, 2003
198
1
114
Or , if you are a starter just add a npc

[@Main]
#SAY
What can I do for you?

<Change my Level/@change>

[@change]
#IF
LEVEL >= 1
LEVEL <= 50
#ACT
CHANGELEVEL 50
#ELSESAY
Sorry <$username> , you're not level 1-50
 
Upvote 0

IHaveALongName

LOMCN Veteran
Veteran
Sep 8, 2012
1,598
2
252
150
Qatar
If you want the player to log in and have Lv.40 instantly
without npc clicks go to
Server > Envir > Npcs > 00default.txt ( i think thats the right name lol unsure because im away )

and just put this

[@Login]
#IF
LEVEL = 1
#ACT
CHANGELEVEL 40
 
Upvote 0