Jump to content

Atomik

Members
  • Content Count

    23
  • Joined

  • Last visited


Reputation Activity

  1. Upvote
    Atomik reacted to meko in Help me understand What is getarg(0)   
    function foobar { .@first_argument$ = getarg(0); // get the value of the first argument passed to foobar() .@output$ = "Hello " + .@first_argument$; // add the value of the first argument to "Hello" return .@output$; // exit the function, while returning the value of .@output$ } mes(foobar("world")); // Hello World  
  2. Upvote
    Atomik reacted to Ai4rei in Few Questions Regarding Client   
    6) About removing doram in character creation
  3. Upvote
    Atomik reacted to Beret in Clan System   
    Aegis file clan system:
     
    tbl={ [ [[SWORD CLAN]] ] = --클랜명 { CID = 1, --클랜 ID 1번부터 시작합니다 EMBLEM_NUM = 1, MASTER_NAME = [[㉬쇽 랍⒣ㆁ보]], -- npc 이름과 동일해야됩니다 MANAGE_MAP =[[prontera.gat]], MAX_USER = 500, --클랜 최대 인원수 ALLY_CLAN={3,}, --동맹클랜 HOSTILE = {0,}, --적대클랜 EFST_ID = { [[EFST_SWORDCLAN]],}, --효과를 적용할 EFST ID 리스트 }, [ [[ARCHWAND CLAN]] ]= { CID = 2, EMBLEM_NUM = 2, MASTER_NAME = [[?? ╉보]], MANAGE_MAP =[[geffen.gat]], MAX_USER = 500, ALLY_CLAN={3,}, HOSTILE = {4,}, EFST_ID ={ [[EFST_ARCWANDCLAN]], }, }, [ [[GOLDENMACE CLAN]] ]= { CID = 3, EMBLEM_NUM = 3, MASTER_NAME = [[?벙 ╉보]], MANAGE_MAP =[[prontera.gat]], MAX_USER = 500, ALLY_CLAN={1,2,4,}, HOSTILE = {0}, EFST_ID ={ [[EFST_GOLDENMACECLAN]], }, }, [ [[CROSSBOW CLAN]] ]= { CID = 4, EMBLEM_NUM = 4, MASTER_NAME = [[?몰┢]], MANAGE_MAP = [[payon.gat]], MAX_USER = 500, ALLY_CLAN={3,}, HOSTILE = {2,}, EFST_ID = { [[EFST_CROSSBOWCLAN]], }, }, }; function main() for clanname, info in pairs(tbl) do result, msg = InsertClanInfo( clanname, info.CID, info.EMBLEM_NUM , info.MASTER_NAME, info.MANAGE_MAP, info.MAX_USER, info.ALLY_CLAN, info.HOSTILE, info.EFST_ID ); if ( not result )then return false, msg; end end return true,"success" end  
  4. Upvote
    Atomik reacted to bWolfie in Height and Width for browser Popup in RO <url><info></info></url>   
    <URL>herc.ws<INFO>http://herc.ws,500,500</INFO></URL>
  5. Upvote
    Atomik got a reaction from IndieRO in Waddup Guys ! i'm Atomik   
    Hello Guys,

    It's a pleasure to meet you all, its been a while since i've played RO , but it feels good to be back .
    when i left RO the only emulator i knew about / was around was rAthena, so now u know i'm really old player
    But yet i'm young , here's my brief introduction.

    i'm 20 years old, i can codee infact i love to code .
    i'm a certified Ethical Hacker 
    my favorite programming language is PYTHON ! <3
    i can code using c++ & c# .
    Not a pro , but can code in PHP aswell.
    ( just in case if someone wants to know i follow laravel framework)
    i'm here to learn stuff from ya'll and grow my skill set .

    ^_^ Thanks For using your valuable time to read my introduction xD

    Cu around , Peas !

     
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.