Jump to content

Saud bin abdullah

Member
  • Posts

    27
  • Joined

  • Last visited

  • Feedback

    0%

About Saud bin abdullah

Informations

  • Gender
    Male

Social Networks

  • Skype
    bin.abdullah3

Recent Profile Visitors

1140 profile views

Saud bin abdullah's Achievements

Explorer

Explorer (4/16)

  • Reacting Well
  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done

Recent Badges

7

Reputation

  1. try to run game without vrunner if mysql_query is works .. that's mean mysql_query function not works with vrunner here is solution mysql_direct_query
  2. when xx.chat."auto events" begin s=select("A",D",E") if s==1 then server_loop_timer("auto_events_start", 1) server_loop_timer("auto_events_end", 1) syschat("A") elseif s == 2 then clear_server_timer("auto_events_start") clear_server_timer("auto_events_end") syschat("D") end when auto_events_start.server_timer begin events_time_begin = os.date("%H") if events_time == 19 then game.set_event_flag("xx", x ) end when auto_events_end begin events_time_end = os.date("%H") if events_time == 22 then game.set_event_flag("xx", x ) notice_all("") end or table for all events will be better events = { [1] = {x, x,................} [2] = {x, x,................ } put what you need [3] = {x, x,................} } as well make sure you make flag check so as don't repeat activation that's all I hope this is what you ask for ^ all of this is example only
  3. i can't see what target from this map may farm ? but look good
  4. the inventory show you names of items from item_proto Client but the dialogue show you names of items from item_proto table open player table first then run query UPDATE item_proto SET shop_buy_price = gold / 2 WHERE shop_buy_price > gold; or UPDATE player.item_proto SET shop_buy_price = gold / 2 WHERE shop_buy_price > gold;
  5. quest awards_day begin state start begin when xx.chat."award" with game.get_event_flag("awards_day") == 1 begin -- you can use `when xx.use` also, you have to edit item type to ITEM_QUEST from txt or 18 from table local items = {1, 2, 3, 4, 5, 6, 7} -- put vnum items local award = number(1,table.getn(items)) if pc.getqf("award_time") < get_time() then say("") pc.give_item2(award, 1) pc.setqf("award_time", get_time()+60*60*24) -- 24h else say("") end -- if end -- when end -- state end -- quest i think it's same idea but in short way
  6. the best ever anime for me is death note because you'll never know what will happen, but his problem the episodes a few
  7. root -> npclist.txt 92929 scythe_girl try to change vnum it's so long nothing
  8. quest Information begin state start begin when login begin send_letter("Information") end when button or info begin say_title("Information") say("") say("") send_letter("Information") end end end i think this is what you mean
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.