vespercore02 Posted March 27, 2012 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 42 Reputation: 3 Joined: 11/29/11 Last Seen: April 19, 2017 Share Posted March 27, 2012 i would like to share this the new food of genetic which gives +20 on each stats the old one is not adding some stats so make one that will show the added stats +20str SAVAGE_STEAK +20agi COCKTAIL_WARG_BLOOD +20vit MINOR_BBQ +20int SIROMA_ICE_TEA +20dex DROCERA_HERB_STEAMED +20luk PUTTI_TAILS_NOODLES you can edit it in status.c and after you edit recompile it status.c line 720 StatusChangeFlagTable[sC_SAVAGE_STEAK] = SI_SAVAGE_STEAK; StatusChangeFlagTable[sC_DROCERA_HERB_STEAMED] = SI_DROCERA_HERB_STEAMED; StatusChangeFlagTable[sC_MINOR_BBQ] = SI_MINOR_BBQ; StatusChangeFlagTable[sC_COCKTAIL_WARG_BLOOD] = SI_COCKTAIL_WARG_BLOOD; StatusChangeFlagTable[sC_SIROMA_ICE_TEA] = SI_SIROMA_ICE_TEA; StatusChangeFlagTable[sC_PUTTI_TAILS_NOODLES] = SI_PUTTI_TAILS_NOODLES; line 821 //Genetic StatusChangeFlagTable[sC_SAVAGE_STEAK] |= SCB_STR; StatusChangeFlagTable[sC_DROCERA_HERB_STEAMED] |= SCB_AGI; StatusChangeFlagTable[sC_MINOR_BBQ] |= SCB_VIT; StatusChangeFlagTable[sC_COCKTAIL_WARG_BLOOD] |= SCB_INT; StatusChangeFlagTable[sC_SIROMA_ICE_TEA] |= SCB_DEX; StatusChangeFlagTable[sC_PUTTI_TAILS_NOODLES] |= SCB_LUK; line 3697 if(sc->data[sC_SAVAGE_STEAK]) str += 20; line 3746 if(sc->data[sC_DROCERA_HERB_STEAMED]) agi += 20; line 3782 if(sc->data[sC_MINOR_BBQ]) vit += 20; line 3829 if(sc->data[sC_COCKTAIL_WARG_BLOOD]) int_ += 20; line 3879 if(sc->data[sC_SIROMA_ICE_TEA]) dex += 20; line 3916 if(sc->data[sC_PUTTI_TAILS_NOODLES]) luk += 20; hope it helps yeah 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.