SCF_ItemDropRate

Page 2 of 2 FirstFirst 12
Results 26 to 36 of 36
  1. #26
    Alpha Member 2009x2014 is offline
    MemberRank
    Dec 2009 Join Date
    2,765Posts

    Re: SCF_ItemDropRate

    Quote Originally Posted by rustyhead View Post
    it works for me sir 4FUNer,, thank you thank you thank you thank you.. :)
    you came from heaven and it solve my problem.. bundle of jewel of bless drop in any mop and any mobs.. :D

    No problem, now you have a good example, how to start build "correct drop file"

    Have fun.

  2. #27
    Join our JOURNEY! MaskARRA is offline
    MemberRank
    Mar 2013 Join Date
    416Posts

    Re: SCF_ItemDropRate

    [QUOTE=rustyhead;8060543]it works for me sir 4FUNer,, thank you thank you thank you thank you.. :)
    you came from heaven and it solve my problem.. bundle of jewel of bless drop in any mop and any mobs.. :D

    [/QUTE]

    Hello where's your SCF_ItemDropRate.txt file located?
    is it in SCFDATA > Items>SCF_ItemDropRate.txt ?

  3. #28
    Hmm.. huh? MrQU3ST10N is offline
    MemberRank
    Jun 2013 Join Date
    Trojan St. 404Location
    1,109Posts

    Re: SCF_ItemDropRate

    [QUOTE=MaskARRA;8060776]
    Quote Originally Posted by rustyhead View Post
    it works for me sir 4FUNer,, thank you thank you thank you thank you.. :)
    you came from heaven and it solve my problem.. bundle of jewel of bless drop in any mop and any mobs.. :D

    [/QUTE]

    Hello where's your SCF_ItemDropRate.txt file located?
    is it in SCFDATA > Items>SCF_ItemDropRate.txt ?
    yes. it is.

  4. #29
    Join our JOURNEY! MaskARRA is offline
    MemberRank
    Mar 2013 Join Date
    416Posts

    Re: SCF_ItemDropRate

    [QUOTE=MrQU3ST10N;8060804]
    Quote Originally Posted by MaskARRA View Post

    yes. it is.


    Tsk tks tsk!
    I try but not works -_-.
    Maybe its GameServer bug?

  5. #30
    Hmm.. huh? MrQU3ST10N is offline
    MemberRank
    Jun 2013 Join Date
    Trojan St. 404Location
    1,109Posts

    Re: SCF_ItemDropRate

    [QUOTE=MaskARRA;8060841]
    Quote Originally Posted by MrQU3ST10N View Post



    Tsk tks tsk!
    I try but not works -_-.
    Maybe its GameServer bug?
    mine 100% works.
    try to put the code correctly..

    the red texts is also a hint xD

  6. #31
    Valued Member rustyhead is offline
    MemberRank
    Feb 2012 Join Date
    130Posts

    Re: SCF_ItemDropRate

    try this if it works..

    Code:
    //=======================================================================================================================
    //SCF Item Drop Rate System
    //www.titanstech.com
    //DaRKav Revision [MAX ITEMS = 1000]
    //=======================================================================================================================
    //Type		-	Section of them (0,1,2 etc...)
    //Index		-	Id of item in that above section
    //Level		-	Level of item to be dropped (+1 will drop +1)
    //ZOpt		-	z28 Option (1 = +4, 2 = +8, etc...)
    //Luck		-	Has luck on item (1 - YES/0 - NO)
    //Skill		-	Has skill on item (1 - YES/0 - NO)
    //Dur		-	Item durability (0 to 255)
    //ExcNum	-	Number of random excellent options (0 = OFF, 1 to 6 = random range, 7 = full exc options)
    //Rate		-	Item drop rate (out of 10000)
    //VipRate	-	Item drop rate (out of 10000) for VIP users (-1 = use regular drop rate)
    //NoTrade	-	Item will drop with FFFFFFFF serial as untradeable (1 - ON/0 - OFF)
    //MobId		-	If specific monster needs to drop that item (-1=any monster)
    //MinLvl	-	Minimum monster level to drop the desired item (0 to 200)
    //MaxLvl	-	Maximum monster level to drop the desired item (0 to 200)
    //DropMap	-	Number of map to drop specific item (-1=all map)
    //=======================================================================================================================
    //Type	Index	Level	ZOpt	Luck	Skill	Dur	  ExcNum	Rate	VipRate	NoTrade	MobId	MinLvl	MaxLvl	DropMap
    //=======================================================================================================================
    0
    
    //Regular Jewels Drop 
    12	15	0	0	0	0	1	0	500	500	0	-1	0	200	-1	//Jewel of Chaos
    14	13	0	0	0	0	1	0	900	900	0	-1	0	200	-1	//Jewel of Bless
    14	14	0	0	0	0	1	0	700	700	0	-1	0	200	-1	//Jewel of Soul
    14	16	0	0	0	0	1	0	600	600	0	-1	0	200	-1	//Jewel of Life
    14	22	0	0	0	0	1	0	2000	2000	0	-1	0	200	-1	//Jewel of Creation
    
    14	200	0	0	0	0	1	0	50	70	0	-1	0	200	52	//Jewel of Level
    14	201	0	0	0	0	1	0	50	70	0	-1	0	200	52	//Jewel of Luck
    14	202	0	0	0	0	1	0	50	70	0	-1	0	200	52	//Jewel of Skill
    14	204	0	0	0	0	1	0	50	70	0	-1	0	200	52	//Jewel of Ancient
    14	206	0	0	0	0	1	0	50	70	0	-1	0	200	52	//Jewel of Socket
    
    14	200	0	0	0	0	1	0	50	70	0	-1	0	200	-1	//Jewel of Level
    14	201	0	0	0	0	1	0	50	70	0	-1	0	200	-1	//Jewel of Luck
    14	202	0	0	0	0	1	0	50	70	0	-1	0	200	-1	//Jewel of Skill
    14	204	0	0	0	0	1	0	50	70	0	-1	0	200	-1	//Jewel of Ancient
    14	206	0	0	0	0	1	0	50	70	0	-1	0	200	-1	//Jewel of Socket
    
    14	110	0	0	0	0	1	1	500	500	0	-1	0	200	-1	//Sign of Dimention
    end

  7. #32
    Join our JOURNEY! MaskARRA is offline
    MemberRank
    Mar 2013 Join Date
    416Posts

    Re: SCF_ItemDropRate

    Quote Originally Posted by rustyhead View Post
    try this if it works..

    Code:
    //=======================================================================================================================
    //SCF Item Drop Rate System
    //www.titanstech.com
    //DaRKav Revision [MAX ITEMS = 1000]
    //=======================================================================================================================
    //Type        -    Section of them (0,1,2 etc...)
    //Index        -    Id of item in that above section
    //Level        -    Level of item to be dropped (+1 will drop +1)
    //ZOpt        -    z28 Option (1 = +4, 2 = +8, etc...)
    //Luck        -    Has luck on item (1 - YES/0 - NO)
    //Skill        -    Has skill on item (1 - YES/0 - NO)
    //Dur        -    Item durability (0 to 255)
    //ExcNum    -    Number of random excellent options (0 = OFF, 1 to 6 = random range, 7 = full exc options)
    //Rate        -    Item drop rate (out of 10000)
    //VipRate    -    Item drop rate (out of 10000) for VIP users (-1 = use regular drop rate)
    //NoTrade    -    Item will drop with FFFFFFFF serial as untradeable (1 - ON/0 - OFF)
    //MobId        -    If specific monster needs to drop that item (-1=any monster)
    //MinLvl    -    Minimum monster level to drop the desired item (0 to 200)
    //MaxLvl    -    Maximum monster level to drop the desired item (0 to 200)
    //DropMap    -    Number of map to drop specific item (-1=all map)
    //=======================================================================================================================
    //Type    Index    Level    ZOpt    Luck    Skill    Dur      ExcNum    Rate    VipRate    NoTrade    MobId    MinLvl    MaxLvl    DropMap
    //=======================================================================================================================
    0
    
    //Regular Jewels Drop 
    12    15    0    0    0    0    1    0    500    500    0    -1    0    200    -1    //Jewel of Chaos
    14    13    0    0    0    0    1    0    900    900    0    -1    0    200    -1    //Jewel of Bless
    14    14    0    0    0    0    1    0    700    700    0    -1    0    200    -1    //Jewel of Soul
    14    16    0    0    0    0    1    0    600    600    0    -1    0    200    -1    //Jewel of Life
    14    22    0    0    0    0    1    0    2000    2000    0    -1    0    200    -1    //Jewel of Creation
    
    14    200    0    0    0    0    1    0    50    70    0    -1    0    200    52    //Jewel of Level
    14    201    0    0    0    0    1    0    50    70    0    -1    0    200    52    //Jewel of Luck
    14    202    0    0    0    0    1    0    50    70    0    -1    0    200    52    //Jewel of Skill
    14    204    0    0    0    0    1    0    50    70    0    -1    0    200    52    //Jewel of Ancient
    14    206    0    0    0    0    1    0    50    70    0    -1    0    200    52    //Jewel of Socket
    
    14    200    0    0    0    0    1    0    50    70    0    -1    0    200    -1    //Jewel of Level
    14    201    0    0    0    0    1    0    50    70    0    -1    0    200    -1    //Jewel of Luck
    14    202    0    0    0    0    1    0    50    70    0    -1    0    200    -1    //Jewel of Skill
    14    204    0    0    0    0    1    0    50    70    0    -1    0    200    -1    //Jewel of Ancient
    14    206    0    0    0    0    1    0    50    70    0    -1    0    200    -1    //Jewel of Socket
    
    14    110    0    0    0    0    1    1    500    500    0    -1    0    200    -1    //Sign of Dimention
    end
    I used TT11.11.82, not work ItemDropRate?

  8. #33
    Valued Member rustyhead is offline
    MemberRank
    Feb 2012 Join Date
    130Posts

    Re: SCF_ItemDropRate

    Quote Originally Posted by MaskARRA View Post
    I used TT11.11.82, not work ItemDropRate?

    im not sure if it work. i use 11.70.52 server fiels, and it works good.

  9. #34
    Join our JOURNEY! MaskARRA is offline
    MemberRank
    Mar 2013 Join Date
    416Posts

    Re: SCF_ItemDropRate

    Quote Originally Posted by rustyhead View Post
    im not sure if it work. i use 11.70.52 server fiels, and it works good.
    From what release?
    can you share it with me?

  10. #35
    Valued Member rustyhead is offline
    MemberRank
    Feb 2012 Join Date
    130Posts

    Re: SCF_ItemDropRate

    Quote Originally Posted by MaskARRA View Post
    From what release?
    can you share it with me?
    http://forum.ragezone.com/f197/share...g-wing-999071/

  11. #36
    Join our JOURNEY! MaskARRA is offline
    MemberRank
    Mar 2013 Join Date
    416Posts

    Re: SCF_ItemDropRate

    thanks I will try this one :D



Page 2 of 2 FirstFirst 12

Advertisement