Jump to content

Brian

Members
  • Posts

    2223
  • Joined

  • Last visited

  • Days Won

    24

Everything posted by Brian

  1. As Nicko said, TK_HIGHJUMP fails on maps with mapflag#noteleport, except for GvG and BG maps. trunk/src/map/skill.c (around line 6247) case TK_HIGHJUMP: { int x,y, dir = unit_getdir(src); //Fails on noteleport maps, except for GvG and BG maps [skotlex] if( map[src->m].flag.noteleport && !(map[src->m].flag.battleground || map_flag_gvg2(src->m) ) ) { x = src->x; y = src->y; } else { x = src->x + dirx[dir]*skilllv*2; y = src->y + diry[dir]*skilllv*2; } So options you have are: remove the 'noteleport' mapflag from pvp_y_1-2 make pvp_y_1-2 a GvG or BG map edit the source code in skill.c and allow High Jump on maps with noteleport mapflag
  2. because higher compression ratio generally means the program is more memory and CPU intensive.
  3. You can split it into several .cab files http://nsis.sourcefo...me_Distribution CalciumKid might be able to point you in the right direction (the Miruku installer uses multiple .cab files).
  4. 2146 2147 2148 2149 2150 (now the count should match the post #)
  5. We made some changes. Please let us know if you are still experiencing this issue.
  6. Brian

    Playtime NPC

    poring_c01,100,100,0 script TotalTimeOnline 910,{ mes "[Acc Infos]"; mes "For your account, you have been online a total of:"; mes callsub(S_SecToTime, @login_time ? (#secs_online + (gettimetick(2)-@login_time)) : #secs_online); mes "Playtime today: " + callsub(S_SecToTime, (gettimetick(2)-@login_time)); query_sql "SELECT logincount FROM login WHERE account_id='"+playerattached()+"'", .@logincount; mes "Login Count: " + .@logincount; close; S_SecToTime: set .@seconds, getarg(0); set .@seconds, .@seconds - set(.@weeks, .@seconds / 604800)*604800; set .@str$, .@str$ + .@weeks+((.@weeks==1) ? " week":" weeks")+", "; set .@seconds, .@seconds - set(.@days, .@seconds / 86400)*86400; set .@str$, .@str$ + .@days+((.@days==1) ? " day":" days")+", "; set .@seconds, .@seconds - set(.@hours, .@seconds / 3600)*3600; set .@str$, .@str$ + .@hours+((.@hours==1) ? " hour":" hours")+", "; set .@seconds, .@seconds - set(.@mins, .@seconds / 60)*60; set .@str$, .@str$ + .@mins+((.@mins==1) ? " min":" mins")+", and "; set .@str$, .@str$ + .@seconds+((.@seconds==1) ? " second":" seconds"); return .@str$; OnPCLoginEvent: set @login_time, gettimetick(2); end; OnPCLogoutEvent: if (@login_time) set #secs_online, #secs_online + (gettimetick(2)-@login_time); end; }
  7. I'm pretty sure it has been like this since before the IPB upgrade.
  8. Topic closed, on author's request.
  9. Emistry: your ping looks fine, your computer can reach both domains. But you still can't see some of the forum images? What happens if you right-click one of those missing images --> Open Image in New Tab Like, can you view this URL? http://cdn.rathena.org/board/public/style_images/master/f_icon_read.png Will you both open a command prompt, run these commands, and post the output here? ping rathena.org ping cdn.rathena.org
  10. I also prefer manually installing. Install Apache, PHP, and some other stuff: yum -y install httpd php php-mysql wget zip unzip Download phpMyAdmin (get URL from their downloads page) and extract: cd /var/www/html/ wget http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/3.5.1/phpMyAdmin-3.5.1-english.zip unzip phpMyAdmin-3.5.1-english.zip rm phpMyAdmin-3.5.1-english.zip optional: rename the folder mv phpMyAdmin-3.5.1-english/ secret_folder_name/ Point your browser to: http://<YOUR_SERVER_IP_OR_HOSTNAME>/phpMyAdmin-3.5.1-english/setup/ and follow the configuration instructions.
  11. Brian

    @main chat spam

    Find the edit you did to atcommand.c and also apply that edit in [src=trunk/src/map/clif.c] (around line 9864) // Main chat [LuzZza] if(strcmpi(target, main_chat_nick) == 0) { if(!sd->state.mainchat) clif_displaymessage(fd, msg_txt(388)); // You should enable main chat with "@main on" command. else { // ADD YOUR NO-SPAM CODE HERE // send the main message using inter-server system intif_main_message( sd, message ); } return; }
  12. Did you search for this hex string? It works for me on 2010-07-28. I don't have any newer client to test on.
  13. I think that's just how IPB shows forums with unread topics (even if they are topics you don't have permission to view). If you see an empty forum, that means none of your Server Advertisement topics were rejected.
  14. We are aware of the bug, and have been trying to figure out what is causing it. Has anyone else experienced this on their IPB forums?
  15. This was removed, but we may re-add it. The Latest Files hook has been re-enabled. Fixed, tabs on this domain (Forums, Members, Wiki, Bug Tracker, etc.) do NOT open in new tabs anymore. People who want to open a link in a new tab can always use Ctrl+Click or Middle Click. Tabs on external domains (SVN & Trac) will open in a new window. Edit: Jman I'm guessing it's because IPS changed the "Forums" and "Members" to be recognized by IP.Board as applications now. But you are able to view the boards from another computer? hmm Can you check if you can ping rathena.org
  16. Also while you're at the command prompt, please type these commands the post the output here: ping rathena.org ping cdn.rathena.org
  17. How to relocate to the SourceForge SVN
  18. Cart List Levels, hex offering
  19. This was removed, but we may re-add it. This was intentionally removed.
  20. The forums were set offline (meaning no one could post), then we made a SQL backup, and did the IPB upgrades. No posts or forum data should have been lost. Fixed.
  21. Fixed Wiki tab link.
  22. Looks like the IPB Unlimited skin isn't 100% compatible. We will check if there is an updated version for IPB 3.3.x !
×
×
  • Create New...