Search found 2998 matches

by Ravana
30 minutes ago
Forum: Lua Labs
Topic: glitchy add_hex_overlay animation
Replies: 7
Views: 109

Re: glitchy add_hex_overlay animation

I ran multiple lua wesnoth.interface.add_hex_overlay(42, 23, {halo="projectiles/fireball-impact-[1~16].png~SCALE(200,300):[60*16]"}) over time on same hex and I still dont see anything glitchy.
by Ravana
Yesterday, 3:29 pm
Forum: WML Workshop
Topic: result of conditional with invalid qualifier
Replies: 2
Views: 85

Re: result of conditional with invalid qualifier

You could make https://github.com/wesnoth/wesnoth/blob ... ls.lua#L25 wml.error if none of comparisons is provided.
by Ravana
April 16th, 2024, 11:38 pm
Forum: Coder’s Corner
Topic: Seeking tricky WML examples
Replies: 14
Views: 2875

Re: Seeking tricky WML examples

There is no general way to escape quote, without using << >> as outer quotes instead. Normally to escape quote you need to double it.
by Ravana
April 16th, 2024, 11:32 pm
Forum: WML Workshop
Topic: traits
Replies: 15
Views: 334

Re: traits

All abilities that are "somehow linked" rely on [event] or their Lua equivalent. You need to locate where they are, and bring them over to your addon. Search by ability id help to find them.
by Ravana
April 16th, 2024, 2:30 pm
Forum: Ideas
Topic: Twitch integrations?
Replies: 2
Views: 100

Re: Twitch integrations?

Just use :gold then.
by Ravana
April 16th, 2024, 2:28 pm
Forum: WML Workshop
Topic: traits
Replies: 15
Views: 334

Re: traits

From code review, unit should be hidden during night on specific terrain. You did not say what situations you tested.
by Ravana
April 15th, 2024, 11:30 pm
Forum: WML Workshop
Topic: traits
Replies: 15
Views: 334

Re: traits

You should clarify what you mean by doesnt work.
by Ravana
April 15th, 2024, 9:30 am
Forum: WML Workshop
Topic: Let the gold rain down!
Replies: 13
Views: 471

Re: Let the gold rain down!

Spaces in event names can be interchanged with underscores (for example, name=new turn and name=new_turn are equivalent).
by Ravana
April 15th, 2024, 7:59 am
Forum: WML Workshop
Topic: Let the gold rain down!
Replies: 13
Views: 471

Re: Let the gold rain down!

Looks correct name.
by Ravana
April 14th, 2024, 11:57 pm
Forum: WML Workshop
Topic: Setting multiple objectives
Replies: 5
Views: 139

Re: Setting multiple objectives

Check all of these conditions before using [endlevel].
by Ravana
April 13th, 2024, 5:59 pm
Forum: Lua Labs
Topic: [closed] remove unit from array
Replies: 11
Views: 414

Re: remove unit from array

Because u.id is empty.
by Ravana
April 13th, 2024, 5:56 pm
Forum: WML Workshop
Topic: variable expansion
Replies: 4
Views: 296

Re: variable expansion

It is possible to make it shorter but I think it is not worth the effort yet. Your first example looks similar to orocia upgrades before I rewrote them in Lua.

If you want to try then yes, [insert_tag] will solve your use case.
by Ravana
April 13th, 2024, 9:41 am
Forum: Lua Labs
Topic: [closed] remove unit from array
Replies: 11
Views: 414

Re: remove unit from array

wml.find_child also gives you index, if u_table only contains tag of that name just use table.remove with that index.

And your version doesnt work because you havent read wml.remove_children documentation.
by Ravana
April 11th, 2024, 10:19 pm
Forum: WML Workshop
Topic: Now THIS is funny
Replies: 9
Views: 442

Re: Now THIS is funny

Once wesnoth knows your addon is invalid it does not bother looking again. You can use f5 to let it try again. Some kinds of errors also require manually deleting cache files.