Jump to content

Brian

Members
  • Posts

    2223
  • Joined

  • Last visited

  • Days Won

    24

Everything posted by Brian

  1. agreed! function isLeapYear { set .@year, getarg(0); return ( .@year%4 == 0 && (.@year%100 != 0 || .@year%400 == 0) ); } @Xtremist: here's what I have so far - script DoubleExp_Last3days -1,{ function getDaysOfMonth; function isLeapYear; OnInit: OnClock0000: // every day, check if it's the last 3 days if (gettime(5) == 1) { // if it's the 1st of the month, end the event } else if (gettime(5) >= (getDaysOfMonth() -3)) { // start the Double Exp event } end; function getDaysOfMonth { switch (gettime(6)) { case 2: // February set .@days, isLeapYear(gettime(7)) ? 29 : 28; break; case 9: // September case 4: // April case 6: // June case 11: // November set .@days, 30; break; default: set .@days, 31; break; } return .@days; } function isLeapYear { set .@year, getarg(0); return ( .@year%4 == 0 && (.@year%100 != 0 || .@year%400 == 0) ); } } How do you want the Double Exp to work? 1. the script uses 'setbattleflag' then @reloadmobdb (like the /npc/custom/floating_rates.txt example) 2. OR use sc_start SC_EXPBOOST on every player?
  2. hmm I received the email verification from Rizon. Maybe check your spam folder? You can try resending the validation code too: /msg NickServ RESENDCODE <nick> Ex: /msg NickServ RESENDCODE vBrenth
  3. One of the things you can do to help is rate people's releases! We have enabled Topic Ratings in all downloads/release sections, so just click the 1-2-3-4-or-5 stars at the top (above the topic title). Hiring staff is one of the things on our to do list. There is no "Staff Applications" topic yet, but if anyone would like to apply now, you can PM an application to one of the staff and we will review it.
  4. What does your chatbar look like: white or black ? If it looks like the 2nd one (black), that means Battlemode is enabled. to disable it so you can type a message, press Enter. Pressing Enter again when the chatbar is blank will switch back. to disable Battlemode completely, press Esc, click BM/Shortcut Settings, uncheck the box "Enable Battlemode" and click OK. and if that wasn't the problem, maybe the hotkey.lua/lub file does not match your client date. =[
  5. To use 'bc_map' in announce, the script needs an attached player (so it knows what map). Which map do you want the announcement to appear on? You can use 'mapannounce' instead, which works with no [wiki]RID[/wiki] attached. mapannounce "pvp_n_1-2", "[Poring Event]: Poring Event has started.",bc_all,"0xECD672"; You will need to change all the 'announce' after OnTimer labels to 'mapannounce' because when an OnTimer label is triggered, there is no RID attached.
  6. These points are listed in the Board Rules in the "Signatures and Avatars" section (and in the Registration Terms too). If you find someone's sig that is not following the rules, you can use the Report This Member link on their profile page or the Report button below their post. Thanks!
  7. Since the script is already using 'charat', you can use that to check for spaces at the beginning/end: Add this before the // check allowed characters section: // check for spaces at the beginning/end if (charat(.@name$,0)==" " || charat(.@name$,getstrlen(.@name$)-1)==" ") { mes "You can not put a space at the beginning or end of your name"; close; }
  8. If you have a SQL backup, restore it. Check if the `char`.`base_level` column is there. If it is there in the backup, it means you or someone with SQL access deleted the column accidentally or on purpose.
  9. Edit ../conf/battle/party.conf and change this to yes: // Display party name regardless if player is in a guild. // Official servers do not display party name unless the user is in a guild. (Note 1) display_party_name: no
  10. Can you post your npc shop script that is giving you that error? (post in or upload as a forum attachment)
  11. Here's how the staff feels about the international sections: Do you know if any of the Portuguese Moderators from the old forums are still active? or anyone here who would be willing to moderator that section?
  12. I was thinking those could go in the Community > Projects section, because not all projects might involve source modifications.
  13. Done, BBCode is enabled! Example: http://www.youtube.com/watch?v=Q5im0Ssyyus OR [youtube]http://www.youtube.com/watch?v=Q5im0Ssyyus[/youtube] Will look like: [media] @Orc Lord: Yes. YouTube stats are counted for embedded videos too.
  14. I'll add this later today. Yes IPB can auto-parse YouTube links, but the default is that flash postings are disabled (which is why YouTube links are not being parsed).
  15. Caching on steroids! (CloudFlare - https://www.cloudflare.com/overview) Sorry it was probably my fault. Thanks for letting us know. I had it set to: Caching Level = Aggressive (cache static content, even with a query string like http://eathena.net/pic.jpg?with=query Let us know if there are any other issues!
  16. I see the green logo. Ohh maybe the image is still cached. Let me check. EDIT: now I see the red logo. Do a hard refresh to clear your browser's cache (in Chrome, hold Shift and click the Refresh button)
  17. go to your profile page: @Diconfrost VaNz put your mouse over your Photo and click Change
  18. I have posted (and seen) a lot of videos on YouTube that involve the RO client, and I haven't heard of any issues yet. Hope it works okay!
  19. Create a /save folder, and copy the contents of the /save-tmpl folder to it.
  20. Here's for your first request: kafrapoints.txt
  21. This section is for Forum Suggestions. Stuff like: - add this section here - rename this section to _____ - install this hook - add this theme etc. *topic closed*
  22. Sorry, declined. A radio station does not fit this project. Our forms of communication are mainly the forums and IRC chat.
  23. This would be useful for the Mob Tombstone system! (Does anyone know how it is on official servers: does the tombstone appear at the x,y where the MVP died? or at the x,y where the player was standing?)
×
×
  • Create New...