Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Next Round Of Noob Questions Of The Day…


kahnival
 Share

Recommended Posts

Sorry to keep asking all these stupid questions!

1) Is it possible for an Admin to change a players class?
2) If question 1 is possible…Is it also possible to create classes that can't be seen on the registration page but can be unlocked later, be it by completing a certain task or by the Admin giving a person that class?
3) Is there a way to level cap players?
4) Is there a way to increase the number of maps?
5) Is there a way to increase the number of NPCS you can create?

Thanks again to the community :D
Link to comment
Share on other sites

@kahnival:

> Sorry to keep asking all these stupid questions!
>
> 1) Is it possible for an Admin to change a players class?
> 2) If question 1 is possible…Is it also possible to create classes that can't be seen on the registration page but can be unlocked later, be it by completing a certain task or by the Admin giving a person that class?
> 3) Is there a way to level cap players?
> 4) Is there a way to increase the number of maps?
> 5) Is there a way to increase the number of NPCS you can create?
>
> Thanks again to the community :D

1) Yes, it's possible. HOW?: Via source.
-or- Look at [[EO 2.0] Account Editor](http://www.touchofdeathforums.com/smf/index.php/topic,72628.0.html)

Place the Account Editor.exe in the same folder that your server.exe is located in. (Do not include anything else in the src folder).

2) Yes, it's possible as well via source. (I don't know _how_ exactly though.)

@Grim:

> 3)Modconstants, look for MAX_LEVEl
> 4)same but look for MAX_MAPS
> 5)same but look for MAX_NPCS

Be specific.
3, 4, 5)
Source edit required,
**Client-side + Server-side**:
In the **client\src** and **server\src** _(Stands for source)_ folder

Look for **Mod**ule -> **modConstants**
Within **modConstants**, find (Ctrl+F) the following:

Find:
```
Public Const MAX_LEVELS As Long = 100

```
Change that to the Max. level you want. Default is 100 levels.

Find:
```
Public Const MAX_MAPS As Long = 100

```Change that to the Max. number of maps you want. Default is 100 maps.

Find:
```
Public Const MAX_NPCS As Long = 255

```Change that to the Max. number of NPC's you want. Default is 255 NPCs.

**Remember to _Save Project_ and _Compile_ both your client.exe and server.exe.** If you need help, [read this](http://www.touchofdeathforums.com/smf/index.php/topic,76433.0.html).
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...