A few stuff.

Newbie Spellweaver
Joined
May 17, 2008
Messages
81
Reaction score
1
Hey uhm, i have a few questions and requests. I'd really appreciate it if you would help me.

1. I need to make a register page, could anybody give me a tut / link for it. Video would be awesome.

2. I think i only have Ugrades Administrator and Developer, how do i add more O: & How do i remove the orange -Administrator and make it whatever i want per char?

3. Example: I want a NoX wepon, so i make it in zitem system.mrs 500 dmg 1000 bullet etc etc, how do i keep it hided, and i don't want it to be seen in the shop. Is there possibelitty to give the items through DB w/o anyone having it, but seeing the spam shotgun?

4. I followed a random guide, now if i kill i level 1 up and if i die i lose 1 level, and when i gain level after 99 it goes back to 1 / 2 / 3 / 4 etc, and it gives too much expirience even i put 30,

Code:
<FORMULA_TABLE id="NeedExpLM">
	<LM lower="1" upper="20">1</LM>
	<LM lower="21" upper="30">1.1</LM>
	<LM lower="31" upper="40">1.2</LM>
	<LM lower="41" upper="45">1.4</LM>
	<LM lower="46" upper="50">1.6</LM>
	<LM lower="51" upper="55">1.8</LM>
	<LM lower="56" upper="60">1</LM>
	<LM lower="61" upper="65">1</LM>
	<LM lower="66" upper="70">1</LM>
	<LM lower="71" upper="75">1</LM>
	<LM lower="76" upper="80">1</LM>
	<LM lower="81" upper="85">2</LM>
	<LM lower="86" upper="90">2</LM>
	<LM lower="91" upper="95">2</LM>
	<LM lower="96" upper="99">3</LM>
</FORMULA_TABLE>

<FORMULA_TABLE id="GettingExpLM">
	<LM lower="1" upper="20">30</LM>
	<LM lower="21" upper="30">30</LM>
	<LM lower="31" upper="40">30</LM>
	<LM lower="41" upper="45">30.1</LM>
	<LM lower="46" upper="50">30.1</LM>
	<LM lower="51" upper="55">30.1</LM>
	<LM lower="56" upper="60">30.1</LM>
	<LM lower="61" upper="65">30.1</LM>
	<LM lower="66" upper="70">30.1</LM>
	<LM lower="71" upper="75">30.1</LM>
	<LM lower="76" upper="80">30.1</LM>
	<LM lower="81" upper="85">30.2</LM>
	<LM lower="86" upper="90">30.2</LM>
	<LM lower="91" upper="95">30.2</LM>
	<LM lower="96" upper="99">30.2</LM>
</FORMULA_TABLE>

<FORMULA_TABLE id="GettingBountyLM">
	<LM lower="1" upper="20">30</LM>
	<LM lower="21" upper="30">30</LM>
	<LM lower="31" upper="40">30</LM>
	<LM lower="41" upper="45">30.1</LM>
	<LM lower="46" upper="50">30.1</LM>
	<LM lower="51" upper="55">30.1</LM>
	<LM lower="56" upper="60">30.1</LM>
	<LM lower="61" upper="65">30.1</LM>
	<LM lower="66" upper="70">30.1</LM>
	<LM lower="71" upper="75">30.1</LM>
	<LM lower="76" upper="80">30.1</LM>
	<LM lower="81" upper="85">30.2</LM>
	<LM lower="86" upper="90">30.2</LM>
	<LM lower="91" upper="95">30.2</LM>
	<LM lower="96" upper="99">30.2</LM>
</FORMULA_TABLE>

And uhmm, that's about it <3
 
hidden staff ugrade id is 252, you can change it in the database in dbo.account (guess u already knew that much) Slightly annoying because if snatches master whenever u join a game but ooh well :p

The other option is u use a unasked runnable which shows your name in gm colour, you'd have to search for that here.

Register page can be searched for also

Custom items can be added if the iscashitem=true, make sure u change it to that :p, and then can be added through the SQL or a admin panel etc..

and what random guide?
 
Upvote 0
hidden staff ugrade id is 252, you can change it in the database in dbo.account (guess u already knew that much) Slightly annoying because if snatches master whenever u join a game but ooh well :p

The other option is u use a unasked runnable which shows your name in gm colour, you'd have to search for that here.

Register page can be searched for also

Custom items can be added if the iscashitem=true, make sure u change it to that :p, and then can be added through the SQL or a admin panel etc..

and what random guide?

Idk, i found somewhere here, to make it 30x.

How do i make it 30x Exp rate, and that it level normally.

And uhm so, if i do uGrde 252 it's GM, you'll se name?
 
Upvote 0
What about my exp rate fix?, i'm getting the exp. And if i die i go level down no matter what level, and if i kill after lv 99 it goes lvl 1. etc.....

Could you make me that xml file and send me it with 30x EXP boost, just regular bounty

I would realllllyyyyy appreciate it,

And a link to figure out register woould be awesome... <3
 
Upvote 0
1) Search

2)You can use almost any "UGradeID" its just you have to do some work in the server/runnable for it to recognize it as something.

3)Copy and Paste from old DR zitem.xml then just don't put it in shop.xml or put the itemid number above 500,000 that way it won't show up in shop. Yes there is a way to send items through DB. Add the item into Item.dbo (fill in every column you can, if it doesn't have anything for the specified column then leave it blank) then add to AccountItem.dbo (I hope you can figure this out :P)

4) If your going to set your level higher in the DB you must also place it to the correct exp. If not then the game will think that your that level closest to your original exp rate (this case usually level 1) and level you down to that level. (There is a full exp thing on GunzFactor look for it :D)

5)work you probably won't be able to do.
 
Upvote 0
1) Search

2)You can use almost any "UGradeID" its just you have to do some work in the server/runnable for it to recognize it as something.

3)Copy and Paste from old DR zitem.xml then just don't put it in shop.xml or put the itemid number above 500,000 that way it won't show up in shop. Yes there is a way to send items through DB. Add the item into Item.dbo (fill in every column you can, if it doesn't have anything for the specified column then leave it blank) then add to AccountItem.dbo (I hope you can figure this out :P)

4) If your going to set your level higher in the DB you must also place it to the correct exp. If not then the game will think that your that level closest to your original exp rate (this case usually level 1) and level you down to that level. (There is a full exp thing on GunzFactor look for it :D)

5)work you probably won't be able to do.

Hey uhm, what u mean with old DR ?zitem?

And uhm, do i just need the line of zitem to get new items or sumin? Or do i have to replace some files to get new items, i just wondering.
And if possible you could give me al ink of all custom equips/sword etc. Well not all but i mean all of IJJI the prems.

I would really appreciate <#

And tell me how zitem etc works please :P i'd like to learn more.
 
Upvote 0
Hey uhm, what u mean with old DR ?zitem?

And uhm, do i just need the line of zitem to get new items or sumin? Or do i have to replace some files to get new items, i just wondering.
And if possible you could give me al ink of all custom equips/sword etc. Well not all but i mean all of IJJI the prems.

I would really appreciate <#

And tell me how zitem etc works please :P i'd like to learn more.
The DR zitem that has the NoX weapons in it.

What? You don't have to replace files to make/get new items. (Unless your editing it to make "custom" sets)

Search around the forum there is some threads that have them but they are not updated.

And you can learn all about what goes on in the zitem.xml from Max's tut in the Tutorial section (sticky, second post)
 
Upvote 0
Lol, you can't unpack dr's .mrs files, it's encrypted like a fuk bag lol.

Edit: Sorry for double post ;P

But how can i manage channels etc, and make a new channel called ................ @ .....................

( the dots with a name ) And how can i put Duel/Quest etc all maps to any level user in it /; enable it.

Ty.
 
Upvote 0
Ehm i got a problem,

Whenever some one kills me or i kill some one that guy is getting -1 level,

how do i fix that O:?

EDIT:
Lol in game i go from lvl 5 to 4, but if i go lobby it says ''Level 1'' O:
 
Upvote 0
Back