SphereCommunity
Help skills - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: Script Help (/Forum-Script-Help)
+--- Thread: Help skills (/Thread-Help-skills)



Help skills - darksoulfe - 06-16-2013 05:55 AM

where that script I'll move to put a shard easy need to put the shard easy
as I put that change for each potion made ​​up 0.1 and skills and thus among other


RE: Help skills - Mordaunt - 06-16-2013 06:05 AM

Afraid I don't understand what you're trying to say here


RE: Help skills - darksoulfe - 06-16-2013 06:13 AM

I want every action done by the player, he va gaining 0.1 of the shard skills begins with 10 in all skills, and when the player type tama an animal it will rising skills, taming it gets more every shard type 0.1 easy shard rapidas skills, he will by mining and every action the skills it rise 0.1 to the 100% understood


RE: Help skills - Alaric - 06-16-2013 12:08 PM

Ask somebody to translate it from your mother tangue. It might help. I personally don't understand at all.


RE: Help skills - darksun84 - 06-16-2013 10:18 PM

You can do that in two way :

1-
You can change the Advancement Rate of every skill from (example)

ADV_RATE=10.0,200.0,800.0

to

ADV_RATE=1.0,1.0,1.0 (every 1 success you gain +0.1% )

2-

Just create an events with the @Skillsuccess trigger, inside it you can place the 0.1 increment

Example
PHP Code:
[Events skillsupergain]
ON=@Skillsuccess
if <argn1> < 100.0
 argn1 
+= //argn1 is the skill  the player used 
 
return 0
endif
return 




RE: Help skills - xwerswoodx - 06-23-2013 11:01 PM

(06-16-2013 10:18 PM)darksun84 Wrote:  Example
PHP Code:
[Events skillsupergain]
ON=@Skillsuccess
if <argn1> < 100.0
 argn1 
+= //argn1 is the skill  the player used 
 
return 0
endif
return 


That means, if you have 800.0 skillcap, 800.0 skills and use superskillgain, you will gain and it doesn't stop.


RE: Help skills - Mordaunt - 06-23-2013 11:26 PM

Code:
[Events skillsupergain]
ON=@Skillsuccess
if (<src.skilltotal> < <src.skillclass.skillsum>)
  if <argn1> < 100.0
      argn1 += 1 //argn1 is the skill  the player used
      return 0
  endif
endif
return 1


Now it doesn't