Page 1 of 1

GM Refine Command

PostPosted: Mon Nov 01, 2010 3:38 am
by satx72
This may have already been posted, but I couldn't find it. In any case, it's a simple fix.

gmcmds.cpp change:
  1. itemrefine = atoi(tmp)<10?atoi(tmp)*16:9*16;
  2.         thisclient->items[slot].refine = itemrefine;


TO:
  1. itemrefine = atoi(tmp)<16?atoi(tmp)*16:9*16;
  2.         thisclient->items[slot].refine = itemrefine;


This allows a GM to use the refine command to make something a +15:
mask, cap, back, weap, suit, shield, glov, shoe

Re: GM Refine Command

PostPosted: Mon Nov 01, 2010 5:15 am
by Sethanye
this was posted but it was like ummm 3 years back or so, well it was for the /item command, but its essentially the same thing xD i did +15 like 3 years back lol so congrats narose, once again you did nothing new XD

Re: GM Refine Command

PostPosted: Mon Nov 01, 2010 9:22 am
by lmame
Added to dev rev II. I did it for "/item" but forgot to do it for "/refine" :D

Re: GM Refine Command

PostPosted: Mon Nov 01, 2010 11:04 am
by Choseal
ooh, that reminds me.

in Dev Rev 360, NaRose client 249 you could make armor with 15 refine using "/set id 15". And yes, it did change the armor's stats after refine 9. :)

I guess it was already half-done, but they never finished it..

Re: GM Refine Command

PostPosted: Tue Nov 02, 2010 1:57 am
by Sethanye
well making the refines is retardedly easy, all you need is to edit the stb, all the values there are on a percentage stat gain, cant remember if it counts total percentage or percentage from the last stat, but anyway its really simple, same goes for glow colors and stuff. you could easily make refine up to 1000 if you wanted in like 5 mins lol

Re: GM Refine Command

PostPosted: Fri Dec 10, 2010 12:20 pm
by rave
sir may i know what stb should i edit to make refine + 13? and any guides? thanks

Re: GM Refine Command

PostPosted: Sun Mar 20, 2011 2:01 pm
by rave
what about /give2 when i type /give2 it only gives me +9 not +15 like /item which gives me +15

Re: GM Refine Command

PostPosted: Mon Mar 21, 2011 2:00 am
by rave
thanks i already fixed it ^^