Jump to content

Onioni

Community
  • Content Count

    108
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by Onioni

  1. Update: Website Crystal Shop page (can be modify how ever you want it)
  2. you can check how abb 5+ is done, there is ready scripts for that and here is small example to what u need for it.. function map_copy_run_hell( map_copy ) if CheckMonsterDead ( AZRAEL[5] ) == 1 then if CRY[5]==0 then local Notice_all = "Saro: I'll revive and you all will fall into depths more deeper than despair!!!" MapCopyNotice ( map_copy , Notice_all ) CRY[5]=1 end end if CheckMonsterDead ( AZRAEL[6] ) == 1 then if CRY[6]==0 then local Notice_all = "Karu: You might have passed this stage, but prepare for the worst!" MapCopyNotice ( map_copy , Notice_all ) CRY[6]=1 end end if CheckMonsterDead ( AZRAEL[7] ) == 1 then if CRY[7]==0 then local Notice_all = "Aruthur: Please forgive me, my lord, I don't want to go back to hell, Ah!!!" MapCopyNotice ( map_copy , Notice_all ) CRY[7]=1 end end if CheckMonsterDead ( AZRAEL[8] ) == 1 then if CRY[8]==0 then local Notice_all = "Sacrois: Foolish humans, We will meet again! Ha-ha! Ha-ha!" MapCopyNotice ( map_copy , Notice_all ) CRY[8]=1 end end if CRY[5]==1 and CRY[6]==1 and CRY[7]==1 and CRY[8]==1 and HellNotice[1]==0 then local x = 100 local y = 100 local x1 = x * 100 local y1 = y * 100 local refresh = 6000000 local Life = 59000000 local Mob_ID = 75 BigBoss = CreateCha( Mob_ID , x1 , y1 , 145, refresh) SetChaLifeTime(BigBoss,Life) Notice ( "<Mysterious Voice>: Abaddon 5 - 8 all 4 boss is defeated and Boss is summoned at ("..x..","..y..")") HellNotice[1] = 1 end end function map_copy_close_hell ( map_copy ) HellNotice[1] = 0 CRY[5]=0 CRY[6]=0 CRY[7]=0 CRY[8]=0 end ---variable.lua lines need to be as them are in hell CRY = {} CRY[5]=0 CRY[6]=0 CRY[7]=0 CRY[8]=0 HellNotice = {} HellNotice[1] = 0 --monster_conf.lua AZRAEL[5] = CreateCha(974, 7200, 6200, 145, 21600) AZRAEL[6] = CreateCha(975, 19100, 6200, 145, 21600) AZRAEL[7] = CreateCha(976, 19000, 17900, 145, 21600) AZRAEL[8] = CreateCha(977, 7200, 17900, 145, 21600)
  3. Saw this photos, lucky I load the images just in case the topic lost somehow..
  4. I think one way u can use is to add it in function GetExp_New(dead , atk ) and then just add the item to give in inventory... but that way it wont drop then on floor..
  5. here, add it in same folder icuuc38.dll
  6. Selling ripped temp (Mu online) or any other site with any custom php scripts (crystals,vip,panel,vip shop and so on) ~Up!~ Base 1. Prices are 80 usd for website + phpbb forum + monster database as it is. Support + new databases 2. 100 USD with custom databases and support + mall/ crystal/vip/forum/monster database/credit/crystals/auto paypal/ and so on.. how ever you want then (in this case you can't get it on already opened server) custom database mean accountserver, gameserver and website db at it own... Also its possible to do this on normal gameserver and account server you have but in that case i need remote desktop or teamviewer connection to od edits it need. Custom website as you like 3. Ripping new site it's basically 50 USD + custom database offer (100) or the 80 usd functions.. if you want on the new site anything extra that we can deal with it with an extra cost. So total is 130 USD+ remember for website ripping that will be the only site i sell. so NOTE: This mean I will not resell the same page again! (only in case you starting to selling it in that case I will release it with basic functions) monster db site mall page If you are interested pm me in facebook https://www.facebook.com/lari.mahonen
  7. Days can do by this way (used in abb5+ to make it open just in weekends). function can_open_entry_#YourMap#(map) local Now_Week = GetNowWeek() if Now_Week == 1 or Now_Week == 3 or Now_Week == 5 or Now_Week == 7 then -- Monday, Wednesday, Friday & Sunday return 1 end return 0 end
  8. yea that is what I meant and thought. thanks
  9. So it can be do even if character is online? or do the db have real-time info from game?
  10. Hello it's possible to send item from website to in game temporary bag and check that temporary bag is not full and if the character is online at same?
  11. If gameserver is open, then there maybe some problem with maps. example: 1. Player in map where you trying to login is not open 2. Wrong en_us.res like Foxseiz said, its hard to say just with login photo.
  12. yes phpbb 3 can be used with sql db.
  13. You can do something like this --cha_timer SpecialApp_Timer(role,now_tick) --functions.lua function SpecialApp_Timer(role,now_tick) local ret = Check_SpecialApp (role) if ret ~= 0 then local statelv = 1 local statetime = 3600 AddState ( role , role , STATE_SPECIAL , statelv , statetime ) return else local statelv_SpecialApp = GetChaStateLv ( role , STATE_SPECIAL ) if statelv_SpecialApp ~= 0 then RemoveState ( role ,STATE_SPECIAL ) return end return end end function Check_SpecialApp ( role ) local body = GetChaItem ( role , 1 , 2 ) local hand = GetChaItem ( role , 1 , 3 ) local foot = GetChaItem ( role , 1 , 4 ) local head = GetChaItem ( role , 1 , 0 ) local Body_ID = GetItemID ( body ) local Hand_ID = GetItemID ( hand ) local Foot_ID = GetItemID ( foot ) local Head_ID = GetItemID ( head ) if Body_ID ~= 5886 then--body ids if u want more u can add like this: (if Body_ID ~= 5886 and Body_ID ~= 5453 and Body_ID ~= 5842 then) return 0 end if Hand_ID ~= 5887 then return 0 end if Foot_ID ~= 5888 then return 0 end if Head_ID ~= 5885 then return 0 end return 1 end --variable.lua STATE_SPECIAL = 207 --skilleff.txt --if you want it give some effect then u need edit this. 207 Special App -1 0 State_Special_Add State_Special_Rem 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 --skilleff.lua function State_Special_Add ( role , statelv ) local hit_dif = 50--here you add your stats you want (now it give 50 hr) local hitsb = HitSb( role ) + hit_dif SetCharaAttr( hitsb , role , ATTR_STATEV_HIT ) ALLExAttrSet(role) end function State_Special_Rem ( role , statelv ) local hit_dif = 50 local hitsb = HitSb( role ) - hit_dif SetCharaAttr( hitsb , role , ATTR_STATEV_HIT ) ALLExAttrSet(role) end
  14. probally posted in other serverdev spko topic
  15. Do you have any errors in logs when you mele or die by mobs?
  16. you can do example this function ItemUse_NewItem( role ) HelpInfo(role, 0, "This item you can use again and again") UseItemFailed(role) return end
  17. Onioni

    Black Skin for TOP1

    You can just take top2 skin and edit all clu parts, just need to rework them to work whit pko2.. I don't have time to do it now sorry.. like probally friend list and well all the GetReStrings..
  18. No i made my own effects from google and used vip logo lgo as base, added Level check to edit effect in every 2 lev... there is still one problem even i added logo down its still a bit too up (lazy to play whit skilleff).. Nightmare helm u get from top2 iteminfo.. Scripts is based on @xtc Admiral Cloak Scripts.. Yup? logos.rar
  19. Its in top2/pko2.4+ Item to get more success rate.. Junior, inter and advanced if don't use that it like -10% and if use junior its like +5%, int +10% and adv +15% success rate (as base in files). So its item to replace pet from that box. and i like that way.. (dunno if even pet works there to give any success rate..)
  20. bump still looking website/ website security.
  21. I have functions working yea, but I don't want to use Type 59 as powders to add it in "pet slot" something in game.exe look that it need to be type 59.. and that is what I'm looking for..
×
×
  • Create New...