SphereCommunity
How can I cancel the elves creation? - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: How can I cancel the elves creation? (/Thread-How-can-I-cancel-the-elves-creation)



How can I cancel the elves creation? - Lazarus - 07-11-2012 03:21 AM

Just that ^_^ i wan't to cancel the elves creation, forever.

how? Shock


RE: How can I cancel the elves creation? - Extreme - 07-11-2012 03:38 AM

Look at sphere_serv_triggers.scp
Find [Function f_onchar_create]
Paste:
Code:
IF <OBODY> == C_ELF_MALE
OBODY C_MAN
BODY C_MAN
UPDATE
ELIF <OBODY> == C_ELF_FEMALE
OBODY C_WOMAN
BODY C_WOMAN
UPDATE
ENDIF



RE: How can I cancel the elves creation? - Lazarus - 07-11-2012 04:43 AM

(07-11-2012 03:38 AM)Extreme Wrote:  Look at sphere_serv_triggers.scp
Find [Function f_onchar_create]
Paste:
Code:
IF <OBODY> == C_ELF_MALE
OBODY C_MAN
BODY C_MAN
UPDATE
ELIF <OBODY> == C_ELF_FEMALE
OBODY C_WOMAN
BODY C_WOMAN
UPDATE
ENDIF

THANKS ^_^ RLY !

That sends me a error of OBODY but I search this:
http://forum.spherecommunity.net/showthread.php?tid=1138&highlight=elve

and no more errors ^_^


now... ¿Hair and Skin color? How can I change it ON create of the Elves, to look same as a human?

^_ ^ thanks again


RE: How can I cancel the elves creation? - Extreme - 07-11-2012 04:51 AM

Damn, forgot the SRC =D
Well, thats so complicated.
Use this then:
Code:
IF <SRC.ISELVEN>
SRC.SYSMESSAGE @,,1 PLEASE, CREATE A HUMAN CHARACTER!
SRC.REMOVE 1
RETURN 1
ENDIF
PS: look in sphere.ini in expansions, maybe there is an option to disabled elf generation.


RE: How can I cancel the elves creation? - Lazarus - 07-11-2012 05:16 AM

(07-11-2012 04:51 AM)Extreme Wrote:  Damn, forgot the SRC =D
Well, thats so complicated.
Use this then:
Code:
IF <SRC.ISELVEN>
SRC.SYSMESSAGE @,,1 PLEASE, CREATE A HUMAN CHARACTER!
SRC.REMOVE 1
RETURN 1
ENDIF
PS: look in sphere.ini in expansions, maybe there is an option to disabled elf generation.

// FEATURE_ML_UPDATE 01 // Basic ML features
// FEATURE_ML_NINTHAGE 02 // Unlocks ninth age house designer items

yep ^_^ i had a bad feeling with this, because i was think that if i uncheck this, i ll lost all the weapons and monsters of ML.
but nope ^_^ i still have Tongue
and now i can't create Elve Tongue
Now i need to cancel Ninjitsu, necro bushido, etc..
but.. in sphere_skills i can. mbe ^_^

Thanks!