Jump to content

Peopleperson49

Members
  • Posts

    1181
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by Peopleperson49

  1. Wwho updates the repository at https://subversion.assembla.com/svn/weetools/? It has been on rev 41 forever... I keep looking for all these great updates such as Swadon's work, but it doesn't seem to make it. Maybe I have the wrong one. Thanks. Poepleperson49
  2. Use bonus bHealPower,20+2*getrefine(); Peopleperson49 bonus bHealPower,n; Increase heal amount of all heal skills by n%.
  3. Guess I fat fingered that. LOL! Peopleperson49
  4. Yes Mootie bAtkRate,10; will increase all phsical damage by 10%. Peopleperson49
  5. Cadz rent items is a script command. Look in the doc/script_commands.txt! Peopleperson49 *rentitem <item id>,<time>; *rentitem "<item name>",<time>; Creates a rental item in the attached character's inventory. The item will expire in <time> seconds and be automatically deleted. When receiving a rental item, the character will receive a message in their chat window. The character will also receive warning messages in their chat window before the item disappears. This command can not be used to rent stackable items. Rental items cannot be dropped, traded, sold to NPCs, or placed in guild storage. (i.e. trade mask 75) Note: 'delitem' in an NPC script can still remove rental items.
  6. Click here! If you still need help let me know, but its pretty self explanitory! Peopleperson49
  7. I know how to insert items into sql tables, what I was trying to ask for is how to make a page setup like RMS to display all my items on one page. Each entry will be a different table on the page just like RMS. Picture, Item Name, Type, Discription, etc... I don't know how to make a html/php table work correctly with the margins and how to split the cells and stuff. I'm generally useless in this subject. I have tried and slowly getting better, but by the time I actually perfect it RO might not even be played anymore. Well lets hope RO is still around... Thanks for the reply. Peopleperson49
  8. You will follow this format in your scripts_custom.conf: npc: npc/custom/AllCardShop.txt. Peopleperson49
  9. M45T3R you have all the buttons since 2013-03-07 translated? Why not just rar the buttons and post them here? Peopleperson49
  10. How do I write a website page that mimics the setup of RMS for items and mobs? I want it for my custom items and mobs on my fluxCP. I just can't seem to get it right. Peopleperson49
  11. I didn't create this but I still have it in my old script repository. I hope it helps. It might need slight updating, but it has most cards. Peopleperson49 AllCardShop.txt Edit: Sorry I didn't realize that Euphy has already posted pretty much the same thing. When I clicked the link before it gave me an invalid page. Oh well...
  12. I already thought of that but if you have to have the item to warp to the map then it will require another item to come back anyway. That then resets the timer. Peopleperson49
  13. I like your script GmOcean. I suggest you put a check in after the sleep2 to check if the player is still on the same map. If they die and go back to their savepoint early, it shoud prevent warping them back to their savepoint when the time is up. Also you could use a getmapxy to return them to their original location instead of their savepoint if you want to. Peopleperson49
  14. I don't know...give a man a fish, or teach them to fish? He requested assistance so really it seems like its darristan's choice how he wishes to fill his request... He is not leaving him hanging and what he said wasn't wrong. Just giving him the answer now leaves him open to request the same thing again tomorrow instead of teaching him to be a future leader here. Plus Annie you can't keep writing stuff for everybody forever! He requested help and darristan provided it, which is the intent of the request section. Peopleperson49
  15. You can use that or Toastys WoE Controller. Peopleperson49
  16. I get them whenever I teleport into map pvp_n_1-1. It's only that map that it happens on and there really isn't anything special about it that I know of. I don't think any script is running on that map. Peopleperson49
  17. I never really thought about it like that, but yes you can basically change the emperium location to the middle of Prontera and move the NPC somethere also. But I still wouldn't really call Prontera a guild castle, lol. You would probably still need to set some mapflags for Prontera though. I hope that helps. Peopleperson49 Edit: I have finally fixed my NPCLocationRadius errors so I will have time to get back in to this more!
  18. Thanks for your work. It was so much smaller than I puctured it! I figured it would be several different src files that all need modifying. Does this only give the number of people online or does it give account ids? Can it be used as part of the getitem? Peopleperson49
  19. I understand how #storagelist works. I just like the idea of using the NPC script. I just hate going to a physical NPC when I can use a whisper. Peopleperson49
  20. Can somebody create a source mod that creates an array of online player data? Basically it would be like using getpartymember for online characters. Of course there will be some challanges such as the max array size, but it can be limited to a maximum number of arrays to prevent errors. A command like this could be used to easily give items to the entire server in an event or many other uses. I strongly believe that if somebody takes the time to create this it should be added to the SVN due to its possible uses!!! I just cheaply took the getpartymember and changed it as an example of what it could be. *getonlinemember <type>{,<maxelement>}; This command will find all online members and return the information depending on the value of "type" into an array of temporary global variables. Maxelement is the maximum amount of elements that an array will pull. Above this number the array will ignore all further elements. By default the maxelement is set to X. Upon executing this, $@onlinemembername$[] is a global temporary string array which contains all the names of online members. (only set when type is 0 or not specified) $@onlinemembercid[] is a global temporary number array which contains the character id of online members. (only set when type is 1) $@onlinememberaid[] is a global temporary number array which contains the account id of online members. (only set when type is 2) $@onlinemembercount is the number of online members that were found. Be sure to use $@onlinemembercount to go through this array, and not 'getarraysize', because it is not cleared between runs of 'getonlinemember'. If someone uses this command with 30 online members when they invoke this script, the array would have 30 elements. But if another person calls up the NPC, and there is now 15 online members, the server will not clear the array for you, overwriting the previous values instead while leaving any remaining values. So in addition to returning the 15 member names, the additional 15 elements from the last call remain, and you will get 15+15 members, of which the last 15 don't belong. $@onlinemembercount will always contain the correct number, (15) unlike 'getarraysize()' which will return 30 in this case. Example: getonlinemember 1; for(set .@i,0; .@i<$@onlinemembercount; set .@i,.@i+1) { getitem .ItemType,.ItemAmount,$@onlinememberaid[.@i]; } end;
  21. Seems like if you made that script a OnWhisperGlobal it would work out really good for GMs. Nice work. Peopleperson49
  22. Check your packet_db is correct for your client and matches with your mmo.h. I would almost bet that one of those is wrong! Peopleperson49
  23. Are these new diffs being added to the WeeTools repository? Peopleperson49
  24. To make it 7 days you need to know how to modify loops. The rest of it is easy, just copy the code from the first 4 days to add 3 more days. Anyways, just play with it and see how it goes. I will check on the debug. Peopleperson49 Edit: Stydianx my KoE script is pretty simple. It spawns an emperium in the middle of the map and a guild breaks the emperium just like WoE. When KoE ends the guildleader wins whatever prizes you have setup. Its basically a WoE script.
  25. There are lots of discriptions for KoE events so read this entire topic. Also search for KoE topics especially since there is a King Of Emperium Hill script that I origionally wrote this script for. Peopleperson49
×
×
  • Create New...