Jump to content

Fyrd Argentus

Member
  • Posts

    2,014
  • Joined

  • Last visited

  • Days Won

    128

Everything posted by Fyrd Argentus

  1. Thanks. I tried this without quotes or something and it didn't work. Your fix does.
  2. Add (locations 7_fictionisthouse_2) to the list of unprogrammable clickies. This phrase contains keyword "use" and can't be made to operate code, except simple text spit-back. How hard is it to rename the coordinates....? Edit: Also add (locations 7_spherestatue_1) which contains the keyword stat
  3. More on how arrays work combined with storage etc. Each clickie you must pull up (or initialize) the access code using something like: @vo=mds_storage('mysecretname','aoau'); Once ever you need to initialize the storage as being an array: if(@storage[@vo]==null){ @temp=array('name'=>uv('name')); @storage[@vo][uv('name')]=@temp; }; Each pass through the clickie's code (if you have inputs, it cycles through each time) you need to load from storage using something like: @temp=@storage[@vo][uv('name')]; If you use the code below to save data, it wipes out any data previously stored under user-name array @temp=array('name'=>uv('name'),'Team'=>@vt,'Power'=>@vv); @storage[@vo][uv('name')]=@temp; If you wish to add data to an existing array use this (it adds to, not overwrites, other array entries): @temp['newindexname]='datatextornumer'; @storage[@vo][uv('name')]=@temp; or directly @storage[@vo][uv('name')]['newindexname']='datatextornumer'; Also, remember to use the @storage call to save the data at the bottom of the code - if there is input and the clickie code recycles for another pass through the code, all the variable info is lost - you need to save at the bottom and reload it at the top.
  4. If you want to trade credits, what you must do is trade NEW credits/codes. Those on account are the ones that can't be accessed. MD needs money - it is better for the game that if I want to give somebody credits, I have to pony up more money.... Remember, more money means a return to more advertising, which means more new players....
  5. It would be nice to be able to rearrange existing defense rituals, say by a click-and-drag function or move arrows or such. This way you could move your favorite defense ritual to the front without having to erase all the others out there. Present a batch of trees in the park, then a hard defense when you venture forth, then easily go back to trees when training... You could define a block of 20 ritual A and a block of 20 ritual B then rearrange them to alternate A-B-A-B- instead of having to define 40 rituals one at a time... I suppose you should be able to do this whenever you can access your rituals -- which I'd like to be able to do when alone, but that's another issue and I guess Mur has his reasons...
  6. Spicy Pickles function something like this.... Other candy items are similar, I think...
  7. Thank you all. Now that the birthday is passed, I feel..... older.
  8. Mine work. The art is more a wrist-protector, though, they do not cover the entire hand. The whole maniquinn thing is buggy when you only have 1-2 items. It seems to work better when you are fully equiped.
  9. So I've got a UP that has double the age it takes to go to lvl 2, but I have no idea how many levels a UP can go through. I imagine a lot of people are in that position. Perhaps you ought to tell us how old an UP would interest you?
  10. Thanks guys. I have 24 more minutes being just 50 by my count though...
  11. Merry Devilers - check thread for proposed prize distribution.

    1. nadrolski

      nadrolski

      Happy Birthday!

  12. Proposed (i.e., tentative) prize distribution is posted on the Merry Deviler's thread. http://magicduel.invisionzone.com/topic/9655-rewards/page__gopid__84012
  13. Wonderful, more work.... Somebody help me out here - what is a Darkling and how does it compare in value to a GG drach? Thanks Mur/Curiose for the prizes..... it was fun.
  14. Thank you much, Shadowseeker. Mods - please close this one.
  15. [quote name='Shadowseeker' timestamp='1304438952' post='83815'] Toss me two grassans or let me use the fresh ones I bought and you'll get 2 pimps for free for a good cause, or one silver or two if not. [/quote] I'm confused by too many choices here. I have no grassans, could get fresh ones as well, but surely that is no help to you? I'm happy to accept donations to give away as prizes.... Sunfire, I'd be happy to do this trade, pimp for joker. Forum pm...
  16. I certainly won't pay a gold. Lowest offer to sell in a reasonable time frame (decided by me) will be accepted. Would trade an imp or slighty tokened joker instead.
  17. I think I have found a way to counter the witches' invasion, over in the new lands east of the Tribual. However, it is going to take a lot of spell-casting to open the ways, and then help from all of you to win the assistance we need. If you go there now, you will see lots of distinct and half-formed images of spirits I'm trying to help manifest. I will let you all know when I think the time is ripe to proceed....
  18. I have one age 254 with blooddrop and oxfangs. What's it worth to you?
  19. Well, well. It seems that the spirits I first uncovered guarding the crown jewels, and the shadow army that invaded to try to seize them, are both lead by nasty witches, whom are now plotting a game to take over the MD Realm. Don't go there, or you will be recruited onto one side or the other, or join me in the ranks of the neutrals trying to maintain balance in the realm. If one side or the other gains ascendancy over the weaker side (plus the neutrals) they would be in a position to wreck havoc on the realm, and I just might have to ransom that side off with treasures and prizes to get them to not hold their war. Don't even think about it. Don't go out and recruit players to your side. Please? It seems that a player's power depends on how many of the Lost Path treasures they hold, so collecting the crown jewels gives one quite an edge. Hunting the shadow army helps too, as it provides short-cuts to the crown jewels, and opens up the door to venture against the Shadow Army in their homeland, the Primordial Source. This is some sort of feindish test the witches have set up to allow champions to switch sides. (I hope none of the neutrals helping me defend the balance get the idea of going in there...) I am working on a way for concerned players to break the spell and go neutral, and also on battle plans for how to get rid of these evil creatures once and for all. There must be some hope in the newly discovered lands east of the Tribunal. All those clickies... all that power.... As usual, anybody helping to strengthen my magic by finding bugs in the incantations win pickle points - which can now be used to buy those wonderful magical items, spicy pickles, which also seem to carry power with them. And wish points are available for any player showing exemplary performance... In closing, let me apologize for accidentally opening the door for these vile ones to enter the realm, and please join me in trying to get rid of them. Good luck.
  20. Update on storage functions..... mds_storage_load and mds_storage_read are both rejected by the compiler, as they contain the reserve words "load" and "read" respectively. I have successfully implemented code to save a list of players and a data array associated with each as follows: @vo=mds_storage('[s]mysecretname[/s]','aoau'); The following is first-time call and sets up two npc's. It never had to be run again, so is turned to comments with //. //if(@storage[@vo]==null){ // @temp=array('name'=>'Herself','Team'=>3,'Power'=>15); // @storage[@vo]['The Queen']=@temp; // @temp=array('name'=>'Herself','Team'=>2,'Power'=>15); // @storage[@vo]['The Princess']=@temp; // }; The following is normal call to save a new name. @temp=array('name'=>uv('name'),'Team'=>@vt,'Power'=>@vv); @storage[@vo][uv('name')]=@temp; This is a call to reset myself so I can debug. @storage[@vo]['Fyrd Argentus']=null; This is a conditional statement for if the player is in the list or not if( @storage[@vo][uv('name')]==null ){ ---do one thing }else{ ---do something else }; This is the code for counting up power on each team. @vq=0;@vr=0;@vs=0; foreach(@storage[@vo] as @vl){ //note using @vl as the running index echo 'Fighting for '; if(@vl['Team']==2){ echo 'The Princess'; @vr=@vr+@vl['Power']; }else{ if(@vl['Team']==3){ echo 'The Queen'; @vq=@vq+@vl['Power']; } else { echo 'Balance in the Realm'; @vs=@vs+@vl['Power']; } }; echo ' with a power of '.@vl['Power']; echo ' is '.@vl['name'].'.<br>'; }; // Fin player list echo 'Score is '.@vq.' to '.@vr.' '.' with '.@vs.' neutral.<br>';
  21. You need to click inventory above the mood panel to get the functionality you need. If you click your own [I] doc you do not have that functionality in that view.
  22. What is good? Following the Taoist precepts, Good only exists as a subjective value judgement in relation to Evil. Therefore what is good for one of us may not be good for another of us, and anything lodged in this multi-faceted web called Life has components that are both good and bad in the myriad of contexts in which it might be evaluated. A Good person considers the needs of, and impact on, others in everything they do. An Evil person deliberately acts contrary to the needs of others. Most of us carry on in an oblivious fashion. What is your best physical attribute? Let's face it, physically I am a wreck. I would trade my above-average strength for agility any day. My hearing, once measured as 5dB better than average, and my ability to hear the texture and pitch of sounds and the character of what made a particular sound is perhaps my best physical attribute. What is your best non-physical attribute? I live outside the box, with a grand big-picture view, always a different perspective, always striving to see how all the little bits of the world fit together, and am pretty "good" at that. What do you value most? The value of a thing depends on its uniqueness. That which is unique is of highest value. And the things that are most unique are the souls of individuals - except for those who are soul-less followers of fashion and the herd.... What is 2 + 2? An arithmetic expression What do you know? I stink, therefore I am. (Seriously, the more seriously a person takes themselves, the more likely they are to be seriously wrong.)
  23. Golly, if we're going to low-ball, then 2sc each for #2 thru 5.
  24. Check your spam folders. 4 of my 7 "peasants" got it - not sure what they'll do with that now that I can do clickies - but the other three had expired yahoo e-mail accounts (4 months inactive) and so they did not receive the MD e-mails.
×
×
  • Create New...