Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. try search here ? http://rathena.org/board/files/category/128-graphics-resources/
  2. npctalk "FREE LEVEL FOR YOU"; set BaseLevel,150; set JobLevel,70; end;
  3. erm..i just simply take a look on your Split Personality script as you requested..~ it's nice that you have dropped the idea using permanent variable to store your skill data... here is some suggestion...for me...i found out it's quite troublesome for the code input...>.< and for your SQL....i think you should add another checking before remove the skill data from SQL.. extra checking like..check for character id / account id ...or another..... then...alot of part...you can refine it by make use of arrays .....especially the random part that generate the name...egone..cgone..dgone...etc... for the part that rebirth a character ...or turn back to new novice... you can make use of this.. resetlvl <action type>; and...i think the existing of function named createTable() is not needed here....just simply put that sql_query line at the OnInit part...
  4. @kangfredy once the script is published...you are free to edit the contents.....all setting can be set inside
  5. erm...vBrenth had solved his problem by switching to this... https://rathena.org/board/index.php?/files/file/2498-%7B?%7D/
  6. mf_pvp_nocalcrank try mapname mapflag nocalcrank or OnInit: setmapflag "mapname",nocalcrank; if you want this to get initialized upon @command... you can try use bindatcmd "command","<NPC object name>::<event label>"{,<atcommand level>,<charcommand level>}; bindatcmd("command","<NPC object name>::<event label>"{,<atcommand level>,<charcommand level>});
  7. cp/config/server.php 'Level' => 0, // Default account level during registration.
  8. http://rathena.org/w...om_Window_Title by default..the diffpatch should have asked you to input your server name....
  9. just modify your current script....what doesnt exist in your script but i show you..then you add it....
  10. Please review your post everytime you post.... i cant read what's ur script.... when i was thinking to help you remove those color tag... i saw....every words also got it own color tag...so..i..cancelled.. and ask you to repost the content . anyway.... OnPCKillEvent: if( strcharinfo(0) == "mapname" ){ ................... ................... } end;
  11. inside here.. https://rathena.svn....map/atcommand.c and there is no specific line where you can post it... you can just find this... ACMD_FUNC(unloadnpcfile) { if( !message || !*message ) { clif_displaymessage(fd, msg_txt(1385)); // Usage: @unloadnpcfile <file name> return -1; } if( npc_unloadfile(message) ) clif_displaymessage(fd, msg_txt(1386)); // File unloaded. Be aware that mapflags and monsters spawned directly are not removed. else { clif_displaymessage(fd, msg_txt(1387)); // File not found. return -1; } return 0; } then put your @AFK code under there...... then find ACMD_DEF(unloadnpcfile), put below.. ACMD_DEF(<afk or whatever>),
  12. open ur hex editor....select that client.exe ..... then search for the website string... for example...if the client redirect you to www.google.com then you search for www.google.com then change ALL www.google.com to www.YOURWEBSITE.com
  13. Check this.... http://rathena.org/board/forum-32/announcement-10-script-request-rules/
  14. i think it's this file... http://subversion.assembla.com/svn/ClientSide/Lua_Project/lua%20files/stateicon/stateiconinfo.lua
  15. another extra for installing MySQL in your window.. http://rathena.org/wiki/SQL_Installation there are alot installtion...choose your prefered one http://rathena.org/wiki/Category:Installation
  16. download a diffpatcher http://supportmii.com/ro1/Clients/DiffPatcher.7z download a client... http://supportmii.com/ro1/Clients/ and hex it
  17. OnNPCKillEvent: freeloop(1); ............... ............ ............... ............... freeloop(0); end;
  18. disable this setting...trunk/conf/login_athena.conf // Can you use _M/_F to make new accounts on the server? new_account: yes then setup your control panel..and etc
  19. you can create a diff using your current svn that contain your custom settings... but not sure it can apply in future svn since the structures / contains might have changed the way i use.....redo everything..xD hahaha maybe there is other way....not sure.
×
×
  • Create New...