Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. Idont think these can be done through script or source mod ... it's up to your server GM to manually detect these guild and take action on them.
  2. use wordpad or notepad++ or any other text editor....except the original window notepad.
  3. probably your logo isn't saved in compatible format, change the color bitmap.
  4. UPDATE `char` SET `last_x`='156', `last_y`='186', `save_map`='mycustomtown', `save_x`='156', `save_y`='186'
  5. you can try this https://pastebin.com/ry0JJp6U
  6. mob_db.txt and please make your own topic next time.
  7. use the "screen" command in your linux to save it. call the screen again next time when you want to view it.
  8. switch ( Class ) { case Job_Swordman: setarray .@base_exp,1,2,3,4,5,6,7,8,9,10; setarray .@job_exp,1,2,3,4,5,6,7,8,9,10; break; case Job_Acolyte: setarray .@base_exp,1,2,3,4,5,6,7,8,9,10; setarray .@job_exp,1,2,3,4,5,6,7,8,9,10; break; default: break; } getexp( .@base_exp[BaseLevel - 1], .@job_exp[BaseLevel - 1] );
  9. if ( BaseLevel > 1 ) { mes "Only Base Level 1 can get EXP."; } else { switch ( Class ) { case Job_Swordman: getexp( 2, 3 ); break; case Job_Acolyte: getexp( 4, 5 ); break; default: break; } }
  10. the script itself has no restriction for new_1-1 map. make sure your character are not in chatroom or vending.
  11. OnClock1245: OnClock1645: OnClock2045: OnClock0045: OnClock0445: OnClock0845: it start on these hours. or you can add this to your OnInit label bindatcmd("startevent", strnpcinfo(3) +"::OnStartEvent"); start the event by using @startevent command.
  12. if you want these frostjoke and scream text, make sure you have the translated version. if you dont want these text, diff your client to disable it.
  13. set LAmonRa, 0; set LAngeling, 0; set LArchangeling, 0; set LAssassinCrossEremes, 0; set LB_EREMES, 0; set LAtroce, 0; set LBascojin, 0; set LEventBapho, 0; set LBaphomet, 0; set LBeelzebub, 0; set LCatONine, 0; set LDarkIllusion, 0; set LDarkLord, 0; set LDetale, 0; set LDeviling, 0; set LDoppelganger, 0; set LDracula, 0; set LDragonFly, 0; set LDrake, 0; set LEddga, 0; set LEntweihen, 0; set LSnakeLord, 0; set LBishop, 0; set LGarm, 0; set LGemini, 0; set LGhostring, 0; set LGloom, 0; set LEclipse, 0; set LGoldenBug, 0; set LMagaleta, 0; set LHellion, 0; set LHPMagaleta, 0; set LHWKatrinn, 0; set LHWKatryn, 0; set LHydrolancer, 0; set LIfrit, 0; set LIncantationSamurai, 0; set LKiel, 0; set LStormyKnight, 0; set LKtullanux, 0; set LLadyTanee, 0; set LGSeyren, 0; set LKSeyren, 0; set LLordDeath, 0; set LMastering, 0; set LMaya, 0; set LMayaPurple, 0; set LMistress, 0; set LMoonFlower, 0; set LMutantDragon, 0; set LNagh, 0; set LOrcHero, 0; set LOrcLord, 0; set LOsiris, 0; set LPharaoh, 0; set LPhreeoni, 0; set LPoriPori, 0; set LRSX, 0; set LSniper1, 0; set LSniper2, 0; set LTaoGunka, 0; set LThanatos, 0; set LThanatos2, 0; set LThanatos3, 0; set LThanatos4, 0; set LThanatos5, 0; set LTirfing, 0; set LToad, 0; set LTurtleGeneral, 0; set LVagabondWolf, 0; set LValkyrie, 0; set LValkyrieRan, 0; set LVesper, 0; set LVocal, 0; set LWhites1, 0; set LWhites2, 0; set LSMorroc, 0; set LEgnigem, 0; set LZmey, 0; set LHardrock, 0; set LTendrillion, 0; you need to remove all these variables from the database for offline player and attach all current online players and set these variable to 0.
  14. if I recall correctly, these are hexed in the client.
  15. you can still find several old client here. http://svn.games-service.net/
  16. @AzuraSkyy the checking should be if (.barrier1 < 1) {
  17. you need to install the korean language pack into your operating system. you can get it from the window update ...
  18. the script already give reward for 1~5th hours ... just add the 6~8 hours by yourself....
  19. updated. You know its off topic, but you still post it .... should the mod reply with "You know you broke the rules, how many warning point you the mod to award you?" Anyway you can search the forum for any dynamic shop, it's easily found in the forum...
  20. repair table [yourtablename]; shutdown server and repair your database table.
  21. maybe you can give this a try... https://pastebin.com/JK3KPDE2 it clear other data as well ... but still some of these tables aren't suppose to delete data in such way... use at your own risk.
  22. yup, but they can re-enter the map, but your script also affect players in other map since it doesnt have the map checking. anyway, combination of OnPCBaseLvUpEvent + OnPCLoadMapEvent = ideal solution.
  23. - script baselvl_kick_map -1,{ OnInit: .max_level = 150; .map$ = "prontera"; setmapflag .map$,mf_loadevent; end; OnPCLoadMapEvent: if ( strcharinfo(3) == .map$ && BaseLevel >= .max_level ) { warp "SavePoint",0,0; } end; }
×
×
  • Create New...