Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. revert the changes then.....
  2. use prompt instead of select *prompt("<option>"{,"<option>",...}) example : switch( prompt("Menu 1:Menu 2") ){ Case 1: mes "You selected Menu 1"; break; Case 2: mes "You selected Menu 2"; break; Case 255: mes "You clicked the CANCEL button."; break; } close;
  3. search for the hourly point script in script release section ?
  4. CREATE TABLE IF NOT EXISTS `login` ( `account_id` int(11) unsigned NOT NULL auto_increment, `userid` varchar(23) NOT NULL default '', `user_pass` varchar(32) NOT NULL default '', `sex` enum('M','F','S') NOT NULL default 'M', `email` varchar(39) NOT NULL default '', `group_id` tinyint(3) NOT NULL default '0', `state` int(11) unsigned NOT NULL default '0', `unban_time` int(11) unsigned NOT NULL default '0', `expiration_time` int(11) unsigned NOT NULL default '0', `logincount` mediumint(9) unsigned NOT NULL default '0', `lastlogin` datetime NOT NULL default '0000-00-00 00:00:00', `last_ip` varchar(100) NOT NULL default '', `birthdate` DATE NOT NULL DEFAULT '0000-00-00', PRIMARY KEY (`account_id`), KEY `name` (`userid`) ) ENGINE=MyISAM AUTO_INCREMENT=2000000; i dont think we have the last_mac in the sql .....
  5. remove the mapflag for novending and try this in ur script setcell "market",0,0,512,512,cell_novending,1; setcell "market",95,141,95,141,cell_novending,0; if error on the coordinate range..just set the maximum size of that map in the 1st line
  6. perhap you are missing the favourite column ? http://rathena.org/wiki/Favorite_tab
  7. change the formula for rate calculation here... i = 5 + 2*skilllv + (sstatus->dex - tstatus->dex)/5; the part u mention above just for Minimum Rate...
  8. perhap would be this part ? https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/map/skill.c //Rate in percent if ( skillid == ST_FULLSTRIP ) { i = 5 + 2*skilllv + (sstatus->dex - tstatus->dex)/5; } else if( skillid == SC_STRIPACCESSARY ) { i = 12 + 2 * skilllv + (sstatus->dex - tstatus->dex)/5; } else { i = 5 + 5*skilllv + (sstatus->dex - tstatus->dex)/5; } if (i < 5) i = 5; //Minimum rate 5%
  9. for Diff stuff..read this http://rathena.org/wiki/Diff
  10. yes...learn C Programming...
  11. http://rathena.org/wiki/Category:Source_Functions http://rathena.org/wiki/Category:Source_Snippets
  12. Dont create another same topic when there is already one.. http://rathena.org/board/topic/65231-monster-command/ * Topic Closed *
  13. refer the All In One NPC made by Euphy in script release section
  14. Please dont create multiple topic.. after you create a topic...wait for the website to loading or refresh your webpage... otherwise you will accidently double create the topic.. Please refer to this topic http://rathena.org/board/topic/69385-mouse-freedom/ * Topic Closed *
  15. just remove the condition checking... if( strcharinfo(3) == "mapname" )
  16. change OnAgitEnd to OnHour00: or OnClock0001:
  17. http://rathena.org/wiki/Custom_Items#idnum2itemdesctable.txt
  18. OnPCDieEvent: if( strcharinfo(3) == "mapname" ) warp "SavePoint",0,0; end;
  19. announce "Special : "+mobcount( $@Map$,strnpcinfo(0)+"::OnSpecialKill" )+" | Normal : "+mobcount( $@Map$,strnpcinfo(0)+"::OnNormalKill" ),0;
×
×
  • Create New...