Images
-
Screenshot_20230327_224813.jpg
Screenshot_20230327_224813.jpg
By Muratus del Mur ·
NFTs created from the new api, in md, from bestiary creatures. You can find them also on opensea.io where you can view there rarity and such.
Currently there is no way for anyone to create such nfts, but this is just because nobody showed any interest in this feature.
I will cobtinue working on in-game interfwces for this, or i will just use them for personal transfers and rewards..depends only on your feedback
-
Screenshot_20230327_224828.jpg
-
Screenshot_20230327_224835.jpg
-
Screenshot_20230327_221129_AlphaWallet.jpg
Screenshot_20230327_221129_AlphaWallet.jpg
By Muratus del Mur ·
magicduel.com is not the official erc-20 (eth, polygon) address for md on the eth blockchain.
Magucduel.eth is also a valid ens domain name bound to the official address.
This is part of a series of experiments i do in the crypto direction
-
Fyrd Stuff.jpg
Everything posted by Kafuuka
-
Discussion On Wishpoints
[quote name='Kyphis the Bard' date='30 July 2010 - 02:33 AM' timestamp='1280450003' post='64774'] Fyrd Argentus has brought to my attention the difficulties he has faced in getting Wishpoints to reward for his quests. While he has been able to get them from three of the kings, which he is grateful for, it has been a struggle to do so. [/quote] @Firsanthalas, the above quote doesn't say you did not give Fyrd WP codes. Possibly it was left vague so as not to target the one king that didn't give codes... for all we know that person might even been unable to establish contact with. [quote] All of those roles are of benefit to the whole community, not just the MDA. However, with the current system for rewarding codes, it seems we are being discriminated against. [...] However, the kind of people who I recruit are also the sort of people who are interested in making interesting, and challenging quests for the benefit of the realm. For example, Fyrd's Road Rallies, which work hard to eliminate discrimination of internet speed and award large volumes of prizes; and the Large Scale quest I have been working on for the past year which deals heavily with social interaction. [/quote] You and everybody in the tribunal and everybody who wants to remain independent. I could try to argue that the latter is a group of people who have strong principles and therefore more thrust worthy and good quest creators. I think that makes as much sense as a poet being good at creating quests... Fyrd's road rallies don't merit WPs imo, although I have seen far worse quests been rewarded with a WP. Nonetheless they are an interesting example: the rallies have people who donate creatures to them and thus they have rewards, looking at the rally thread it even did have WPs... Similarly people sponsored the paper shaper contests, for which neither me nor any others of the original team seem to have time for anymore, with coins and creatures. And people do play quests even if there is no reward, as long as the quest itself seems fun. Furtermore, I'd like any people who actually joined a (different) land specifically for WP codes to stand up and speak. Mur might expect this to motivate people, I think it's weird that loyalty can be bought with WP codes. Of course you could betray your country after getting what you want, but has any of that happened?
-
Mundane Item Inventory Project
[quote name='Laphers' date='28 July 2010 - 09:14 AM' timestamp='1280301251' post='64700'] But the way you have described it as using mdscript seems like it wouldn't be terribly useful for people's roles as they would need to go to a scripted location to "see" their items and others wouldn't be able to see them so I don't think it would add to their role.[/quote] Agreed. The item-keys would be as virtual as a description of your possessions in your papers. Perhaps even more so. Items are valuable since they are official and relatively rare. Item-keys as described would have neither of those properties; anybody with script access could create infinite (max int) amounts of them. From a technical point of view, I don't think there is a method to scan for existing keys, except doing it key by key. ie there is no function which returns an array of keys held by the player, which we can access directly, through reg exp or partial matches. Such a function would be a severe threat to the security of most clicky based quests. You can store arrays in a storage, but unless I'm mistaken, storages are not shared across scripters, which would imply a single person has to maintain the entire inventory project. I don't think it is impossible to create it by one person, but my belief in the project would be low if the project could fall apart simply by one player leaving the game.
-
How Can I Get User Action Points?
Why exactly? The only way that looks useful to me is to see how bad people got lost when going from one clicky to the other, but a number of things could interfere with it: regeneration timer, free credits... I hope you're not considering to impose a check to see if people have exactly 5 ap, to allow them to continue?
-
Roleplay Without Speech?
I remember there was a dog character that could only bark (and probably bite too)... until she magically changed into a woman. I hope you'll stay in character, I'm certain it must be tough being unable to communicate leisurely with people, but it can certainly lead to funny and entertaining stories too.
-
Key Control Trouble
[quote name='Rendril' date='21 July 2010 - 07:42 PM' timestamp='1279734127' post='64309'] Is this the only code that gives/reads the keys? I don't see any logic error in the code, are you sure that you are not reusing @vz elsewhere and thereby overriding your key prefix or that some other clickable doesn't accidentally give the wrong key? [/quote] There are two other scripts that give/read keys, but they are hidden behind long passwords AND they all check if the previous key is held. Furthermore all code segments that give a key also change things to the storage, so they should either result in errors or leave traces in the storage, which remains empty for those affected. The basic structure of the other scripts is: [code] if(mds_has_rpcq_keys(@vz . "TBOT_1")){ @temp = @storage[@vs]; @temp[uv('id')][x] = y; @storage[@vs] = @temp; mds_give_rpcq_keys(@vz . "TBOT_2"); mds_take_rpcq_keys(@vz . "TBOT_1"); echo @content[1]; } [/code] So a player would need the right words, the right key, and then first the storage would be updated, second the new key would be given and only afterwards the old key deleted. They would also see the next riddle. Instead they tell me they never see the actual quest, only the sign up button and blank pages or a list of scores. In all scripts @vz is exclusively used for the prefix, and even if it weren't, I don't see how it could lead to people getting a wrong second part of the key.
-
Key Control Trouble
No comma's, but it does have an underscore _. It's also quite long, but it does work for most people. And for the ones who get the bug they don't reproduce it after I take away the troublesome key, so length can't be the issue either.
-
Key Control Trouble
Since I started my first clicky based quest, two people have encountered a weird bug. Instead of getting the key which the script gives them at the start, they immediately get the last key, which allows them to see the list of people who started/finished the quest, but not actually do the quest. They're also not listed in said list, because the list is based on a stored variable, not on keys. I managed to write a small script that takes away the troublesome key from affected people, after which they try to start the quest again, with the standard quest procedure and then they do seem to get the right key and get added to the list. Which makes this bug non reproducible, and a pain to figure out what went wrong. Furthermore the quest will be running for another month so I can't just post all the code here, but have to give a censored version... [code] @vz = "prefix"; //yes i changed this, no i'm not telling what it looks like @vs = mds_storage("TBOT","aoau"); //get the id of the storage if(@storage[@vs] == null)@storage[@vs] = array(); //initialize storage array if(mds_has_rpcq_keys(@vz . "TBOT")){ //check whether users finished the quest -> scores foreach(@storage[@vs] as @temp) echo @temp['name'] . ' finished on ' . @temp['end'] . '<br />'; } else if (mds_has_rpcq_keys(@vz . "TBOT_2")) { //check whether users is at stage 2 -> print 'error' echo @content[2]; } else if (mds_has_rpcq_keys(@vz . "TBOT_1")) { //check whether users is at stage 1 -> execute censored... (1); } else if (isset(@input['turn'])) { //check for new users -> execute & initialize @temp = array( 'name' => uv('name'), censored...); @storage[@vs][uv('id')] = @temp; mds_give_rpcq_keys(@vz . "TBOT_1"); censored... (copy of (1)); } else //else print sign up button echo @content[1]; [/code] Content (first parts) [code]<!-- content separator --> Time. <br /> Censored<br /> <form method="post" action=""><br /> <input type="submit" name="turn" value="Turn the page"/> </form> <!-- content separator --> This page is <b>currently</b> blank. <!-- content separator -->[/code] What should happen and does in 99% of the cases: people start without keys and end up in the 'else' part. They push the button 'turn', then the clicky refreshes and they get in the 3rd option, upon which they receive key TBOT_1 (+prefix), and get added to the list of questers. What happens 1% of the time: people do not get added to the list of questers and sometimes get key TBOT (+prefix). Possible reasons: 1. they had the endkey before accessing the script... unless Mur used that combination of prefix and key for something else and since i know what prefix i used, that it is extremely unlikely. 2. A lot of things in MD expire when the hour changes, perhaps this interferes with MD script? It seems unlikely for it to cut off exactly '_1' from the string, and also doesn't explain why the player wasn't added to the quester list. 3. The problem lies in a further part of the quest. That's nigh impossible, the people experiencing the problem mentioned they got stuck at the very beginning; all further scripts require other words to be activated, they never remove someone from the quester list and they all check if the previous key is on the user. Furthermore I explicitly put the remove key statements after the give key statements to be certain that nobody would get stuck if a scripts is aborted halfway... Note that I tested the quest with several alts to see if I was able to go to the next phase and never encountered problems. Furthermore one person, [b]who shall remain anonymous for obvious reasons[/b], already managed to solve it. Final note: the problem certainly can be circumvented, but if it is not my fault, then it implies that a lot more 'rogue keys' are in existence. Maybe any partial string is sometimes given as key instead of the full string but this is the first case in which a sub-string is actually a 'used' key.
-
Several Things To Discuss About Mdscript Future Development
That's probably the easiest way to prevent abuse, yet what about items created to be a reward for winning a quest? So far I've spent two WPs, one to get a Q doc, one to get clicky grade 4. If I'd want to make an item for a reward and put a script on it myself, i'd have to spend two more (and some to get to the 8 spent points requirement.) I think it's hard enough on people who want to make difficult yet doable and interesting quests and get a nice reward from them. (Being hard doesn't stop me from doing it, it's just that I'd rather not get more obstacles just because it could be abused... there will always be loopholes and imo there already are questionable quests and other troubles out there.)
-
Selling "your Own Md Wallpaper"
[quote name='Watcher' date='19 July 2010 - 05:46 PM' timestamp='1279554406' post='64170'] [quote name='Muratus del Mur' date='07 June 2010 - 11:30 AM'] Images FROM MD, can be used for quest purposes, mixed together, altered, etc, as long as they are not creating confusion. No image should be used that could be considered a spoiler, like premium creatures, remote locations, achievements colored art, etc. [/quote] How do you conclude that what you are proposing is allowed? This is not a quest, for a quest, or is in any way quest related. Because Muratus del Mur has said one thing--that images from MagicDuel may be used and altered, with stated limitations--you come to believe that his statement applies to something else entirely? Your use of "logic" is astounding. [/quote] How do you conclude that it is for quest purposes only? I'm not an expert on English grammar, but a comma can be used to list multiple possibilities which need not be inclusive as well. "can be used for quest purposes or mixed together or altered etc." versus "can be used for quest purposes, eg by being mixed together or being altered etc". In a further quote, Mur states personal use as another acceptable use, does he have to list all things allowed one by one? It's funny how you go after single words, yet fail to provide quotes which are interpretable in only a single way.
-
Rp Judges
Technically I think you would want a heterogeneous group, tailored to fit all the opinions on RP. With a homogeneous group you would keep the subjectivity. There's also two aspects, good character creation and good role play. As for what I consider good role play, stay in character and no 'bunnying'. It's tempting to attack the evil overlord who's pretending to be your character's best friend, except that your character doesn't realize it, even though you do as a player. Besides, your character doesn't have to 'win' for the player to have fun. Would [i]The Green Mile[/i] have been a better movie if [spoiler]the innocent guy who cured the warden's wife of her terminal illness, didn't get the electric chair[/spoiler]? It actually is possible to just count the number of times people make mistakes, provided they all participate evenly and they all have decent papers. And then there's decent papers and character creation... which would get me horribly off topic.
-
A Question Of Time
[quote name='Kafuuka' date='09 July 2010 - 08:38 PM' timestamp='1278700735' post='63716'] Instructions: Find I Ark Mattarox, use the clickies from left to right. Sometimes pwd's will be between brackets []. [/quote] Getting started was supposed to be the easy part; maybe my perception is a bit off.
-
Alt Abuse?
[quote name='MRHoly One' date='17 July 2010 - 11:46 PM' timestamp='1279403164' post='64087'] Since i do not have the bestiary feature, i am not familiar with it other than what i read in the announcements. BUT, i believe the benefits from it far out weighs the 3 items that MRAlyon gained for his WP's. Which is ONLY a few imaginary items that he would most likely NEVER trade since they are MR items. OK with that said, i am not taking sides in this whats so ever. As a matter of fact, i think that it was a waste of 3 WP's that are such precious commodities (to me at least). When he could have used them for spells to gain an edge in the realm. Thats just what i would have done. So in my eyes he lost out, didnt gain anything. [/quote] Vagueness.. you realize that there is no definite cut off point? If you accept three items, certainly you will accept four items? n => n + 1; complete induction => we should accept people to farm infinite alts for infinite items. (Or max int, i'm certain there's some limit to the uid variable.) Also the point is that it was BPG, Those 3 WPs on alts are not a rare and precious commodity. Even with the random starting tile, there's only 36 variations to the puzzle, each one solved by the exact same method/algorithm, which can be made into a short script that prints out the combinations in a second. The only counter to this is that Mur, [b]probably[/b], does not consider a total of 3 items a threat to balance and has some (imo) arbitrary cut off point which has yet to be reached. Of course the best way to reach that point is to accept BPG farming as fair behavior, set a precedent and all get us a dozen of bestiaries like dst suggested.
-
What If ?
[quote name='No one' date='16 July 2010 - 04:59 PM' timestamp='1279292386' post='64012'] What would you do if doom day comes, [b]you survive[/b] and there will be no electricity available (at least not cheap) ? [/quote] Sounds a bit unlikely. I live in a 60 km radius of a nuclear power plant, so it's a bit tricky to imagine a world without electricity wherein I'm still alive and not glowing in the dark. If electricity prices were to steadily increase, accompanied by an imminent collapse of society, I'd spent my remaining money on printing/buying the anarchists' cookbook and a gun. Any knowledge and possession of explosives will be handy for what comes after that. I harbor no illusions about the intent of other men. Without electricity, people will get bored and have time to think about what'll come next. They'll realize food will become scarce (no refrigeration, lack of transportation, manual harvesting instead of machinery and most of all a chaos spiral) and without a way out (Belgium doesn't have large unurbanized areas)... Good thing some of my friends practice at a shooting range and I know basic chemistry. We'll have a blast raiding liquor stores and making Molotov cocktails, then raiding more stores and burning what can be used against us.
-
Miniquest : The Exploration Of Mda
[quote name='Chewett' date='14 July 2010 - 07:24 PM' timestamp='1279128283' post='63949'] Well, You dont need to unlock it if you can impress Rendril Enough by your coding efforts. there was an announcement made a while back again. [/quote] Sounds like a catch 22 to me...
-
Personal Paper Customization
[topic='6179']There's a thread on embedding music.[/topic] There's a lot of things to consider though: depending on the server you upload your music and flashy things to, it might load slowly, which is further impoverished by some flash templates that explicitly add delays or intros. Some of these applets have no volume control and are annoyingly loud (yes i can turn my speakers but I'll sooner have clicked x). And if you put music on autoplay in all of your papers, it'll be horrible when using the public profile page to read stuff (which is handy if you want to use the chat at the same time).
-
Sparring Grounds - Evolution
1. The not contacting ShadowSeeker issue: well it wasn't nice. It wasn't particularly wise either, seeing how much controversy it rose, but hindsight is always easier. imo you've paid enough for that already. 2. The purpose. I'm a bit confused too. Do you want to change things now, or did you want to open discussion and change things afterwards? Do you want a zero maintenance thing? People seem to think SG worked for that. Do you want high maintenance? afaik the dojo worked well while it had enough staff, which is obviously it's weakness. Something inbetween? I think that'd be tricky. Perhaps keeping the SG as is but organizing Grasan Free Fridays would work. 3. [quote name='Rhaegar Targaryen' date='07 July 2010 - 01:02 AM' timestamp='1278457328' post='63549'] My goal is to develop this as much as possible, and ultimately, we will be able to present the players possible paths in this realm (is it stat grinding, is it role playing, showing them who's where and where to go to start your self-made tasks), but that's it showing them possibilities and helping them understand the basis of this realm, imperative is for us not to force ANY opinion about possible paths nor influence them in any way. I don't know what you all think of this and how much of you are willing to take part? [/quote] Role Play? I think that's a bit too much hay for your pitchfork. And technically, any interaction is a form of influencing. Showing people they have a choice they might not be aware of is influencing them.
-
A Question Of Time
Some clarifications: There are currently no people with negative (below zero) karma points. There is no need to interact with Arky or anyone else. I can't be bothered to be online 24/7. However I think it is a nice opportunity since Arky isn't out of Necrovion much, thanks to the bungee effect. If you encounter large lists of seemingly arbitrary numbers, that's good. If you encounter blank pages, something must have gone wrong. PM me asap (forum or in game). Fixed 1 error earlier today, hoping there won't be more.
-
A Question Of Time
[center]Kafuuka Milling Inc presents: [size="5"]A Question Of Time[/size] Featuring: [size="5"]I Ark Mattarox[/size] [/center] Rules: 1. No cheating. If caught you'll be banned from all Kafuuka Milling Inc quest until you redeem yourself, without any comments on how such is even possible. 2. Doing silly or thoughtless things will cost you karma points. eg. using the wrong label when pm'ing. 3. People with negative karma points are ineligible for prices. 4. No spoilers. (See rule 1) Rewards - IRS - Incremental Reward System: There will be WPs, however, the number of WPs will depend on the number of people making a decent effort and capped to what I have available (5). More in detail, I require 5 people to 'loose' per 'winner'. The winners are not necessarily the first ones to complete the quest. In case of ties, the winners will be the ones with the most karma points. Instructions: Find I Ark Mattarox, use the clickies from left to right. Sometimes pwd's will be between brackets []. Notes: First new quest in a long time, now using clickies. Be prepared to face numbers (and maths muhahaha). Remember that it is a Question of Time. If possible, I'd like people to remove their silly comments from Arky... (eg. "Empty Aramor 75"... not quite...) (note: not adressed at Junior who made an entry after talking to Arky) There is no need to sign up or anything, just follow the instructions and your (lack of) progress will be monitored. Karma points: you had about two years to get some... below is a list of people who did: Intrigue, Emerald Arcanix, Zleiphneir, Gargant, Czez, Alwin, Kriskah Arcanu, brys, phantasm, dst, ribidian, Eman Emaul, Rendril Revant, ShadowSeeker, Grido, Indyra Sirenias, Nimrodel, Frederick Georges, Castin, Chanda, Totenkopf, nadrolski, SilentShade1, Raygon Vandark, Pazur, Darkest Mage, samon, Lord Beta Wolfeyes
-
For Linux users:Clicking on buttons brings the new windows up under the old ones
Ubuntu 10.04, amd 64bit, gnu icecat 3.6.4, flash plugin 10.0 r45 (manually "installed" from: libflashplayer-10.0.45.2.linux-x86_64.so.tar.gz) The new combat system works as good as the old one. The only problem I noticed is that if you don't wait for all the images to load before you start dragging, there can be a difference between the cursor position and the position of what you're dragging. I only have the 64b version of the flash plugin, and I don't know if it'll be easy to find the 32b version if you'd need that one. Which revision did you use before 10.1?
-
Item Swapping
[quote name='Sasha Lilias' date='05 July 2010 - 08:18 PM' timestamp='1278353886' post='63457'] I have replied to both your comments and then said we should stay on the topic(Items)for I did not have anything else to say to your comments. I do not bare grudges and I do not carry things on.[/quote] When did you comment on these objections then? [i]How do you plan on watching people whether they are farming creature age for themselves or for quest purposes? What do you have to say against a previous rebuttal: creating a good quest with nice rewards will bring fame and thus benefit towards your main. [/i] And you explained yourself why creature transfer and coins, which are by definition items, is the same: one can be traded for the other. Thus it was not off topic. Telling me to stay on topic for whatever reason besides me being off topic, is rude and generally a poor tactic. [quote] As for the personal conversation, it was one. I did not post it on the forums and I did not name anyone. I am not the only person that was against item trading considered as "Alt abuse". I had seen it in chat from someone also, THAT was the reason I made this topic, so that I could see if others were against the idea. Please try and get you facts straight. [/quote] Oh it was a conversation between two people, fine. If that makes it personal, then next time someone posts evidence of private chats about trades when someone is accused of theft, let's all say 'oh no, those conversations are personal,' and discard them as evidence. Would it have been different if Chewett had only said 'This topic came about after me telling her its alt abuse'? I don't think so. And I do make a considerable effort to get my facts straight. I've read your old posts each time before answering a newer one, to check if something was brought up before. What I notice is that you are sad and disappointed in Chewett, but do not hold grudges against him. You also find it necessary to say you don't hold grudges against me... why? It does not relate to your goal of seeing who considers it alt abuse.
-
Old Games!
[quote name='Totenkopf' date='05 July 2010 - 07:51 PM' timestamp='1278352298' post='63451'] Lemmings [/quote] & Lemmings xmass, oh no more lemmings, lemmings tribes, lemmings chronicles (which only runs on a x486 with pci graphics, not on a pentium with agp/pciE nor on a x386) and lemmings 3d (lemmings paintball doesn't count and revolution was rushed too much) Civilization & Colonization Master of Magic (elemental: war of magic is supposed to be the unofficial, 20y late sequel, i hope it'll be good) Ragnarok (Valhalla) Commander Keen series Galactix Tyrian Sokoban Lode Runner (or something sounding similar) Total Annihilation (imo the best RTS of that time) Theme hospital Dungeon keeper I also remember we had a lot of platformers by the same company, I think one of the titles was Crystal Caverns Some of these games also still work in DosBox woooo!
-
Item Swapping
[quote name='Sasha Lilias' date='05 July 2010 - 02:11 PM' timestamp='1278331885' post='63425'] I don't see why you have to bring up personal conversations. Is it helping you prove your point? I started this topic to see how many other people think that it should( or shouldn't be) called alt abuse. Im sad that you had to resort to bringing in a personal coversation as this has lowered my opinion of you now... though you probably won't care. [/quote] Oh come on... you stated at first that others have already said that it is alt abuse in your first post. That 'personal conversation' is hardly personal and it's not like you've been less of an ignorant person in this thread than in that conversation. I stated two objections which you haven't even tried to refute; I refuted your premises and in return I'm told I should stay on topic? Worse you even explained why I actually was on topic.. and now you're trying to play the victim? At this point I am very inclined to believe Chewett when he says this thread is not about asking a question to the community and being open to debate. Instead you're aiming for confusion, enough so that you can, against all odds, say you didn't know what you did was wrong.
-
Tree + One Panel
[font="Comic Sans MS"]Bob fanfiction, made without having a scanner or a tablet... no trees were hurt during the creation of these comics. [right] [img]http://img411.imageshack.us/img411/9704/utob001itsamystery.png[/img] It's a mystery [img]http://img34.imageshack.us/img34/9850/utob002hesprobablyangry.png[/img] He's probably angry because you woke him [img]http://img535.imageshack.us/img535/1286/utob003notaseasyasitloo.png[/img] Not as easy as it looks [img]http://img294.imageshack.us/img294/2451/utob004weneversawjesuis.png[/img] We never saw Je suis Oeufs fous again [img]http://img411.imageshack.us/img411/2071/utob005orsmallercupsofc.png[/img] Or smaller cups... [img]http://img535.imageshack.us/img535/1511/utob006lawofdrinkinggam.png[/img] Law of drinking games: they will spiral out of proportions [img]http://img34.imageshack.us/img34/7089/utob007whodidyouthinkwa.png[/img] What, who did you think was placing those mass orders, Mur? [/right][/font]
-
Item Swapping
[quote name='Sasha Lilias' date='02 July 2010 - 08:29 PM' timestamp='1278095394' post='63198'] The items are still yours, even if given to you by luck. The puzzle is very hard to solve but yes once someone has solved it once they can most likely solve it again, though alot of people solve it through luck. Either way the wishpoint is still yours because you earnt it. Then theirs the active days...so what if you only have to log in? You are gaining a reward because you are an active vet. I am sure there will be some sort of reward system in place, like with the vet medals. [/quote] So if i log in, and "work" to recruit a dozen elementals, then wait for five months and then transfer them to another account, that should be legal. Of course getting elementals requires only patience and dedicated logging in every so often to 'check' upon them. But that's okay, you recruited them with the VP and VE that was yours. I seem to recall accounts with names ala storageA through Z being created the day CTC was implemented. And banned three months later for obvious reasons.
-
Item Swapping
It's a grey zone. If you allow some forms of exchange between alts, people will always use the vagueness to justify other sorts of exchange which were not intended. Plus your premises are wrong: [i]Items are created due to either your role or because you use the raw items, that YOU bought with YOUR coins or creatures, and used q wishpoint that YOU earnt to create the item.[/i] That is not complete. I know there were at least two occasions on which large amounts of items were distributed randomly among players who were online or idle. There's no buying or earning there, just pure luck. Furthermore if you know how to solve the broken pattern puzzle once, you know how to solve it again; that's one free WP per alt. There's also the WP for days thing that might be implemented one day, that'd mean another WP per alt that can be acquired by logging in only. How do you plan on watching people whether they are farming creature age for themselves or for quest purposes? What do you have to say against a previous rebuttal: creating a good quest with nice rewards will bring fame and thus benefit towards your main. I know that it is taxing on quest creators to have to gather enough WP to get the features, then learn to use them, then gather WP codes or creatures or funds etc... but I also know human nature implies several people will try to push things into the grey zone if you declare quest purposes to be white.