Jump to content

DangThao

Community
  • Content Count

    307
  • Joined

  • Last visited

  • Days Won

    23

Everything posted by DangThao

  1. Has anyone make this: 

     template to html css?

  2. Make map a day: Root>resource>mapname>ctrl.lua function init_entry(map) SetMapEntryMapName(map, "garner") SetMapEntryTime(map, "2006/10/19/13/0", "1/0/0", "0/0/30", "0/0/50") end This will set map to open portal in argent everyday, portal open until :30 and close at :50 Summon monster local now_day= os.date("%d") -------------ÈÕ local now_hour= os.date("%H") -------------ʱ local now_miniute= os.date("%M") -------------·Ö local now_scend= os.date("%S") local Now_Week = GetNowWeek () -- 0= Sunday 1=Monday and etc local MapName = GetChaMapName(role) local Monster_ID = 215 local Monster2_ID = 216 local Monster3_ID = 217 local Monster4_ID = 218 local Monster5_ID = 219 local Monster6_ID = 220 local Monster7_ID = 221 if MapName == "garner" then if Now_Week == 0 then SystemNotice ( role , "Sunday: Today's event is Orange Mystic Shrub" ) local new1 = CreateCha(Monster_ID, 214800, 277700, 145, 30) SetChaLifeTime(new1, 90000) elseif Now_Week == 1 then SystemNotice ( role , "Sunday: Today's event is Snowy Mystic Shrub" ) local new1 = CreateCha(Monster2_ID, 214800, 277700, 145, 30) SetChaLifeTime(new1, 90000) elseif Now_Week == 2 then SystemNotice ( role , "Sunday: Today's event is Red Mystic Shrub" ) local new1 = CreateCha(Monster3_ID, 214800, 277700, 145, 30) SetChaLifeTime(new1, 90000) elseif Now_Week == 3 then SystemNotice ( role , "Sunday: Today's event is Dry Mystic Shrub" ) local new1 = CreateCha(Monster4_ID, 214800, 277700, 145, 30) SetChaLifeTime(new1, 90000) elseif Now_Week == 4 then SystemNotice ( role , "Sunday: Today's event is Blue Mystic Shrub" ) local new1 = CreateCha(Monster5_ID, 214800, 277700, 145, 30) SetChaLifeTime(new1, 90000) elseif Now_Week == 5 then SystemNotice ( role , "Sunday: Today's event is Purple Mystic Shrub" ) local new1 = CreateCha(Monster6_ID, 214800, 277700, 145, 30) SetChaLifeTime(new1, 90000) elseif Now_Week == 6 then SystemNotice ( role , "Sunday: Today's event is Ancient Mystic Shrub" ) local new1 = CreateCha(Monster7_ID, 214800, 277700, 145, 30) SetChaLifeTime(new1, 90000) else Notice ( role , "There are no events! Enjoy!" ) end end Hopefully the summon new1 wont trigger any problems. IDK if it works but u can try. NOT TESTED!
  3. Np goodluck. Fixed Topic. @KONG Mod can closed topic
  4. Weren't u used to be a developer? i remembered someone with that name BlankOde
  5. Map name has to be EXACTLY the same from mapinfo to birth_conf to scriptdefine to map folder to map folder map name. Sometimes its because u missing atr and blk file so it shows error.
  6. Ways to make a chest: Check here see if anything is not covered. Here is Lucky's Archive
  7. Anything specifics about chest?
  8. Not a fan of Cloak stuff so cant help you. @KONG bro, any helps here? not a fan of it so idk, maybe u can help this guy. Install the second main map (if first main map = garner (argent) then second main map will be darkblue(Icic)) on another gameserver.cfg. When done with change ip, user and pass of the cfg to ur working one, use server launcher.exe if u got inside server file (most file should have it). From there just click on gameserver2 and it will launch the second gameserver. Hope this helps.
  9. Note: NpcTele - This npc will teleport directly with the assigned coordinates NpcTele1 - It uses normal teleporter like NPC Teleporter Jovial and some other with a whole list of maps and then use coordinate from it Npctele0 - If a map got multiple coordinate to spawn like Argent City, Shaitan City, icicle city and etc, this is a nice idea cause it will random spawn players to assigned coordinates in birth_conf that used the same map.
  10. 1) NPC Teleporter: function NpcTele () Talk( 1, "Would you like to teleport to Heaven?" ) Text( 1, "Teleport to Heaven", JumpPage, 5 ) Talk( 5, "Are you sure you want to teleport to heaven?" ) Text( 5, "Teleport", GoTo, 1749, 908, "jialebi" ) end function NpcTele1() --È¡Ïû´«ËÍ·µ»ØÑ¡Ôñ´«Ë͵صãµÄ¶Ô»°ÄÚÈݺÍÒ³Ãæ±àºÅ local ReSelectTalk = "I need to reconsider¡­" local ReSelectPage = 1 --È¡Ïû´«ËͺÍÍ˳ö´«Ë͵ĶԻ°ºÍÒ³Ãæ±àºÅ local CancelSelectTalk = "Forget it¡­I will stay here" local CancelSelectPage = 2 --µØͼÃû³ÆÐÅÏ¢ local CurMapName1 = "garner" --°×ÒøÖ®³Ç×ø±ê local GoTo01X = 2231 local GoTo01Y = 2788 local GoTo01M = CurMapName1 Talk( 1, "Jovial: Hi! I am the Teleporter! How may I help you?" ) Text( 1, "Go to Argent City!", JumpPage, 4 ) InitTrigger() TriggerCondition( 1, LvCheck, "<", 11 ) TriggerAction( 1, GoTo, GoTo01X, GoTo01Y, GoTo01M ) TriggerCondition( 2, HasMoney, 500 ) TriggerAction( 2, TakeMoney, 500 ) TriggerAction( 2, GoTo, GoTo01X, GoTo01Y, GoTo01M ) TriggerFailure( 2, JumpPage, 23 ) Talk( 4, "Teleports to Argent City? No problem! Please pay 500G. Free for players Lv 10 and below!" ) Text( 4, "Teleport",MultiTrigger, GetMultiTrigger(), 2 ) Text( 4, CancelSelectTalk, JumpPage , CancelSelectPage ) end function NpcTele0() Talk( 1, "Would you like to return to Argent City?" ) Text( 1, "Return", JumpPage, 2 ) InitTrigger() TriggerCondition( 1, HasMoney, 5000 ) TriggerAction( 1, TakeMoney, 5000 ) TriggerAction( 1, MoveCity, "Argent City" ) TriggerFailure( 1, JumpPage, 3 ) Talk( 2, "Return to Argent City?? No problem! Please pay 5000G!" ) Text( 2, "Teleport",MultiTrigger, GetMultiTrigger(), 1 ) Text( 2, CancelSelectTalk, JumpPage , CancelSelectPage ) Talk( 3, "Sorry! You do not have enough gold to teleport." ) end These above are the most known/common ones than im awared of. 2)Creating new item? What kind of item, there are many kind, just reply with what u kind of new item (money bag, chest for items, and potion, etc)
  11. u can open more map in gameserver.cfg in ur server file. Sometimes some map wont work so u will have to install it manually if u gameserver.exe show fail on the map or unable to load the map u're trying to open. There are multiple tools for compile any .txt to .bin. Check lucky archive Archives Link
  12. Note: When using without any protection, it works perfectly fine.
  13. Any ideas even with variable lines still show same error? Note: with v3ct0r stuff. A friend asked me to help.
  14. His problem already fixed, it was those anti dupe and so. Removed all and redo it later and fixed.
  15. Anyone knows why game always freeze when you transitions from safe zone to battle zone and then u move back to safe you, the game will freeze, or stay in game for awhile and then move from safe zone to battle zone OR battle zone to safe zone? Note: Don't intent to -remove music to fix it -delete/rename areaset What to do?
  16. Please check question section first... Anyways here:
  17. Yea try find it on pkodev if not check @V3ct0r post on the old serverdev archived links(here in pkodev).
  18. Either hex ur gameserver or use one that is already modified. You're over limit the amount that gameserver let's u.
  19. Check Lucky's Archive: https://mega.nz/#F!OUMUgTYb!jtCsqh7halK_O9uzWyaG0g!bNEwAYjL and find Futurama, see if that is it.
  20. Post ur iteminfo line for the necklace, sometimes its because u put a random amount on the necklace, so whenver u &make or buy from NPC, u will get random stats unless something of ur is mess up
  21. Hello, does anyone knows how can i expand this(check picture below) quest details further down? seems like the box for the quest (x,x,x,x - size x, y, where it is x, y).
  22. Some u cant normal decomple. U need a decrypter, @Sultan, can u help him? remembered saw one of ur post maybe in old serverdev of how to but forgot now.
  23. Open mapinfo.txt and copy a different map line and replace u chaos argent map and change the mapname, minimap name and mapid accordingly to chaos argent. To remove all object of the map, u can just delete the .obj map file inside ur client>map>map-name-u-want-to-delete-object
×
×
  • Create New...