![]() |
Trying to emulate skill advancement and override the original skill (almost) totally. - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: Script Help (/Forum-Script-Help) +--- Thread: Trying to emulate skill advancement and override the original skill (almost) totally. (/Thread-Trying-to-emulate-skill-advancement-and-override-the-original-skill-almost-totally) |
Trying to emulate skill advancement and override the original skill (almost) totally. - Rayvolution - 07-21-2012 03:25 PM I haven't scripting in years, I used to be an old scripter back in the TUS days, 51a and eventually in the 55i days.. but, I've forgotten a lot in the past 5 years or so, and I can't seem to wrap my head around this problem and I feel it should be simple. Basically, I'm trying to (if possible) trigger the "Skillgain chance" in an unnatural environment for a skill. What I plan on doing is completely disabling ItemID's normal functions, and "fake it" with another function. The new way I plan on writing ItemID (and Arms Lore, but that's not important right now) is when you single click on an item it'll tell you information about that item in a SYSMESSAGE, based on how high your ItemID skill is, and then, "test" the skill and allow skillgain like you would if you used it normally. Alternatively, I wouldn't mind simply having a "Random chance" script that just raised the skill at random, but I'd rather it just test the skill correctly and let Sphere decide if it wants to give the user a skillgain. Here's a quick script I have written up, I just need to plugin the value that either tests the skill (allowing for default skill gains) or just stick in a random variable for a chance at a gain. Either will work, but I'm stuck trying to figure it out. I eventually plan on plugging this into every single item in the game (Yes, I know, I'm crazy.) but first I need to figure the skill gains out. ![]() Super-basic script I have so far, yes, I know I overwrote a core ITEMDEF, I did it on purpose. ![]() Code: [ITEMDEF 0f0c] RE: Trying to emulate skill advancement and override the original skill (almost) totally. - Gil Amarth - 07-21-2012 07:17 PM Another possibilty is give to all items a tevent like: e_ItemID_sysmessage Putting TEVENTS = e_ItemID_sysmessage in the ITEMDEF definition, below TYPE, for example. And later write a single file [TYPEDEF e_ItemUD_sysmessage], with all the descriptions, much cleaner in my opinion. [TYPEDEF e_ItemUD_sysmessage] ON=@DCLICK IF (<DEFNAME> == i_bottle_medium_empty) Your code ELSEIF (<DEFNAME> == i_hammer_smith) Your code ... ... .. ENDIF It´s still a colossal work, but you will have everything in a single file. RE: Trying to emulate skill advancement and override the original skill (almost) totally. - darksun84 - 07-22-2012 03:13 AM About the skillgain, there is the function SKILLGAIN skill, difficulty Invokes Sphere's skill gain for the specified skill, with the given difficulty (0-100) I don't know if for difficulty, it means the skill value or the action's difficulty! RE: Trying to emulate skill advancement and override the original skill (almost) totally. - Skul - 07-22-2012 03:20 AM Your IF/ELSEIF/ELSE/ENDIF structure is wrong: Code: IF (<SRC.ITEMID> < 10) also, you should compare skill amounts by the tenth of a decimal point Code: if (<src.itemid> < 10) //1.0%, SKILLGAIN function was added in a while ago, it works like so: Code: skillgain <skill name/key> <difficulty to gain at> Code: IF (<SRC.ITEMID> < 10) RE: Trying to emulate skill advancement and override the original skill (almost) totally. - Rayvolution - 07-22-2012 10:38 AM Thanks, I'll give it a shot and see how it works when I get home. ![]() I knew my statements were all messed up, it was a sloppy job to test the concept. No where near a final product. Although I didn't notice I forgot my ENDIF, whoops! I didn't realize sphere added a skillgain function, is this new in 56b? I don't remember having it in 55i. Although, I may of just never had a reason to use it. RE: Trying to emulate skill advancement and override the original skill (almost) totally. - Skul - 07-22-2012 11:10 AM skillgain is a new function, added during the 56b development. |