![]() |
Variables in Defname - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: Script Help (/Forum-Script-Help) +--- Thread: Variables in Defname (/Thread-Variables-in-Defname) |
Variables in Defname - alexpetro - 05-05-2012 07:36 PM I'm working on quest system, and i would use variables in the quest dialog (defname), does it possible? RE: Variables in Defname - Shaklaban - 05-06-2012 01:01 AM well you can't directly use variables on defnames, but can use when calling them like: local.quest_loot=<def.quest_<eval <tag.questno>>_loot> RE: Variables in Defname - jeem - 05-06-2012 03:51 AM Shaklaban is right. Though it is possible to create workarounds depending on how you call the defname. Using double brackets is the first thing that pops into my mind: Code: def.lol = "gold" Give us an example of how you plan to use them. RE: Variables in Defname - alexpetro - 05-17-2012 01:09 AM Thanks but, this is not what i'm serching. The primary scope of my request is have dynamic dialogs in the quest system, like in the following example: QUEST_13204_TEXTLOCALIZED "<SRC.NAME> I nedd... and you have to go to the blacksmith here in <src.region.name>" Could be a great feature, if is it possible to implement. Thanks. RE: Variables in Defname - Shaklaban - 05-17-2012 01:27 AM its a definition, definitions are generally fixed values in programming. you can use functions for that purpose like: PHP Code: [function QUEST_13204_TEXTLOCALIZED] it is possible to use variables in function names like: PHP Code: local.questnum=13204 you can also add arguments to text when you calling function. or you can use clilocs. RE: Variables in Defname - Ben - 05-17-2012 09:56 AM There is always workarounds like this one... Code: [FUNCTION DEFVAL] Not sure if it still works, but I created this to emulate the PHP function eval(). So you can do something like this... <defval <def0.lol>> and it will evaluate any variables inside the def ![]() Use at your own risk ![]() |