Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How to Set Starting Inventory for Mir2 Character

Newbie Spellweaver
Joined
Jul 7, 2008
Messages
5
Reaction score
0
Hi,
I downloaded the Server files a couple of days ago and, after much reading of
this forum (mainly iNs@nE, Elvin, Shunt and VirUs's posts), managed to get the
client/server up and running locally.

The only problem I have so far is; how do I set the starting inventory for a new
character?

When I enter the game world, my char is naked and broke! I have searched
the files and DB's for clues and also searched this forum but cannot find the
answer.

Any Mir2 gurus out there willing to point me in the right direction?

Thanks.
 
Last edited:
Newbie Spellweaver
Joined
Jun 3, 2008
Messages
50
Reaction score
0
Hi,
I downloaded the Server files a couple of days ago and, after much reading of
this forum (mainly iNs@nE, Shunt and VirUs's posts), managed to get the
client/server up and running locally.

The only problem I have so far is; how do I set the starting inventory for a new
character?

When I enter the game world, my char is naked and broke! I have searched
the files and DB's for clues and also searched this forum but cannot find the
answer.

Any Mir2 gurus out there willing to point me in the right direction?

Thanks.

In your M2Server folder look for !Setup.txt Then inside look for these lines:

VentureServer=FALSE
TestServer=TRUE
TestLevel=3 <---starting level
TestGold=0 <---gold


ClothsMan=BaseDress(M) <---what armour you start with
ClothsWoman=BaseDress(F)
WoodenSword=Apple <---what weapon, I give out apple.
Candle=Candle <--- Candle given, or whatever
BasicDrug=(HP)DrugSmall <--- what drug

You can also do all of this in m2server while it is running, just go through and "explore" all the tabs.
 
Newbie Spellweaver
Joined
Jul 7, 2008
Messages
5
Reaction score
0
That's it!

Edited !Setup.txt values as per your instructions - new chars now equipped
with base items and some cash.

At least now I can be slaughtered with dignity or try to bribe my low-level
butt out of danger! :hands:

Thank you JamieWeikl for the swift reply.
 
Newbie Spellweaver
Joined
Jul 7, 2008
Messages
5
Reaction score
0
Thanks for the kind offer VirUs.

The quality of this forum and it's participants is second to none.

Nuff said.
 
Initiate Mage
Joined
Nov 30, 2009
Messages
1
Reaction score
0
Sagar Information Technologies provide services in major areas one of them like as Inventory Management System if anyone want Inventory Management System, according to Sagar Information Technologies the Inventory Management System such as deals with the outgoing orders, incoming backorders, returns, or dead stock among one or many warehouses and store locations, gatepass entry, sales and purchase module with reports.

 
Newbie Spellweaver
Joined
Feb 18, 2010
Messages
7
Reaction score
0
If you are wanting to give more items/spells/gold and other accessories to a new begginer, you can always do it like this

C:/MirServer/M2Server/Envir/MapQuest_def/QManage

Type the following with your own edits.

[@Login]
#IF
ISNEWHUMAN
#ACT
Goto @Warrior
[@Warrior]
#IF
CHECKJOB Warrior
#ACT
GIVE PowerAxe
GIVE HalfMoon
GIVE TownTeleport
GIVE GOLD 10000
SENDMSG 6 "Hello <%USERNAME>, And welcome to my server! Here is some start kit to help!"
#ELSEACT
Goto @Wizard
[@Wizard]
#IF
CHECKJOB Wizard
#ACT
GIVE WarMageStaff
GIVE FireWall
GIVE TownTeleport
GIVE GOLD 10000
SENDMSG 6 "Hello <$USERNAME>, And welcome to my server! Here is some kit to help you start!"
#ELSEACT
Goto @Taoist
[@Taoist]
#IF
CHECKJOB Taoist
#ACT
GIVE SoulSpringWand
GIVE SoulFireBall
GIVE GOLD 1000
Give TownTeleport
SENDMSG 6 "Hello <%USERNAME>, And welcome to my server! Here is some kit to help you start!"
break


Hope this gives you more options :)
 
Back
Top