Cookies/Candy/Coke/Pizza/Traingle meds doesn't heal

Results 1 to 12 of 12
  1. #1
    Apprentice Orel1991 is offline
    MemberRank
    Aug 2009 Join Date
    6Posts

    Cookies/Candy/Coke/Pizza/Traingle meds doesn't heal

    This is my problem..

    read title.

    I can see them in game (Exept from Chocolate bar, can't see it)

    But they don't heal.

    I know I need to add them to worlditem.xml, but I don't how.


  2. #2
    Banned Requnael is offline
    BannedRank
    Apr 2009 Join Date
    EstoniaLocation
    378Posts

    Re: Cookies/Candy/Coke/Pizza/Traingle meds doesn't heal

    Quote Originally Posted by Orel1991 View Post
    This is my problem..

    read title.

    I can see them in game (Exept from Chocolate bar, can't see it)

    But they don't heal.

    I know I need to add them to worlditem.xml, but I don't how.
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <XML>
    		<WORLDITEM id="01" name="hp01">
    			<TYPE>hp</TYPE>
    			<TIME>3000</TIME>
    			<AMOUNT>10</AMOUNT>
    			<MODELNAME>red</MODELNAME>
    		</WORLDITEM>
    		<WORLDITEM id="02" name="hp02">
    			<TYPE>hp</TYPE>
    			<TIME>5000</TIME>
    			<AMOUNT>25</AMOUNT>
    			<MODELNAME>red</MODELNAME>
    		</WORLDITEM>
    		<WORLDITEM id="03" name="hp03">
    			<TYPE>hp</TYPE>
    			<TIME>10000</TIME>
    			<AMOUNT>50</AMOUNT>
    			<MODELNAME>red</MODELNAME>
    		</WORLDITEM>
    
    		<WORLDITEM id="04" name="ap01">
    			<TYPE>ap</TYPE>
    			<TIME>3000</TIME>
    			<AMOUNT>10</AMOUNT>
    			<MODELNAME>green</MODELNAME>
    		</WORLDITEM>
    		<WORLDITEM id="05" name="ap02">
    			<TYPE>ap</TYPE>
    			<TIME>3000</TIME>
    			<AMOUNT>25</AMOUNT>
    			<MODELNAME>green</MODELNAME>
    		</WORLDITEM>
    		<WORLDITEM id="06" name="ap03">
    			<TYPE>ap</TYPE>
    			<TIME>10000</TIME>
    			<AMOUNT>50</AMOUNT>
    			<MODELNAME>green</MODELNAME>
    		</WORLDITEM>
    
    		<WORLDITEM id="07" name="bullet01">
    			<TYPE>bullet</TYPE>
    			<TIME>3000</TIME>
    			<AMOUNT>1</AMOUNT>
    			<MODELNAME>yellow</MODELNAME>
    		</WORLDITEM>
    		<WORLDITEM id="08" name="bullet02">
    			<TYPE>bullet</TYPE>
    			<TIME>3000</TIME>
    			<AMOUNT>2</AMOUNT>
    			<MODELNAME>yellow</MODELNAME>
    		</WORLDITEM>
    
    
    <!-- 서버 뿌려주는 아이템 id가 51이상이어야 한다. id 바뀌면 안됨 -->
    		<WORLDITEM id="51" name="itembox">
    			<TYPE>quest</TYPE>
    			<TIME>3000</TIME>
    			<AMOUNT>2</AMOUNT>
    			<MODELNAME>itembox</MODELNAME>
    		</WORLDITEM>
    
    
    <!-- 플레이어가 뿌려주는 아이템 id는 100 이상이어야함 -->
    		<WORLDITEM id="100" name="medikit">
    			<TYPE>hp</TYPE>
    			<AMOUNT>10</AMOUNT>
    			<MODELNAME>medikit</MODELNAME>
    		</WORLDITEM>
    
    		<WORLDITEM id="110" name="repairkit">
    			<TYPE>ap</TYPE>
    			<AMOUNT>10</AMOUNT>
    			<MODELNAME>repairkit</MODELNAME>
    		</WORLDITEM>
    
    		<WORLDITEM id="111" name="bulletkit">
    			<TYPE>bullet</TYPE>
    			<AMOUNT>1</AMOUNT>
    			<MODELNAME>bulletkit</MODELNAME>
    		</WORLDITEM>
    
    		<WORLDITEM id="120" name="samgak01">
    			<TYPE>hpap</TYPE>
    			<AMOUNT>7</AMOUNT>
    			<MODELNAME>samgak01</MODELNAME>
    		</WORLDITEM>
    
    		<WORLDITEM id="121" name="candy">
    			<TYPE>hpap</TYPE>
    			<AMOUNT>8</AMOUNT>
    			<MODELNAME>candy</MODELNAME>
    		</WORLDITEM>
    
    		<WORLDITEM id="122" name="chocobar">
    			<TYPE>hpap</TYPE>
    			<AMOUNT>8</AMOUNT>
    			<MODELNAME>chocobar</MODELNAME>
    		</WORLDITEM>
    		<WORLDITEM id="130" name="medickit_rx">
    			<TYPE>hp</TYPE>
    			<AMOUNT>20</AMOUNT>
    			<MODELNAME>medickit_rx</MODELNAME>
    		</WORLDITEM>
    		<WORLDITEM id="131" name="repairkit">
    			<TYPE>ap</TYPE>
    			<AMOUNT>20</AMOUNT>
    			<MODELNAME>repairkit_rx</MODELNAME>
    		</WORLDITEM>
    
    <!-- 서버와 통신하지 않는 아이템 -->
    		<WORLDITEM id="201" name="portal">   <!-- id를 바꾸면 소스도 바꿔야 한다. -->
    			<TYPE>client</TYPE>
    			<TIME>3000</TIME>
    			<MODELNAME>portal</MODELNAME>
    		</WORLDITEM>
    
    		
    		<MeshInfo>
    			<AddWorldItemElu name ="yellow">
    				<AddBaseModel name ="yellow" filename="model/worlditem/ef_yellow.elu"/>
    				<AddAnimation name="play" filename="model/worlditem/ef_yellow.elu.ani" motion_type="0" motion_loop_type="loop" />
    			</AddWorldItemElu>	
    			
    			<AddWorldItemElu name ="red">
    				<AddBaseModel name ="red" filename="model/worlditem/ef_red.elu"/>
    				<AddAnimation name="play" filename="model/worlditem/ef_red.elu.ani" motion_type="0" motion_loop_type="loop" />
    			</AddWorldItemElu>	
    			
    			<AddWorldItemElu name ="green">
    				<AddBaseModel name ="green" filename="model/worlditem/ef_green.elu"/>
    				<AddAnimation name="play" filename="model/worlditem/ef_green.elu.ani" motion_type="0" motion_loop_type="loop" />
    			</AddWorldItemElu>	
    
    			<!-- 메디킷 -->
    			<AddWorldItemElu name ="medikit">
    				<AddBaseModel name ="medikit" filename="model/weapon/item/medikit.elu"/>
    			</AddWorldItemElu>	
    
    			<!-- 리페어킷 -->
    			<AddWorldItemElu name ="repairkit">
    				<AddBaseModel name ="repairkit" filename="model/weapon/item/repairkit.elu"/>
    			</AddWorldItemElu>	
    
    			<!-- 탄창킷 -->
    			<AddWorldItemElu name ="bulletkit">
    				<AddBaseModel name ="bulletkit" filename="model/weapon/item/medickit_samgak01.elu"/>
    			</AddWorldItemElu>	
    
    			<!-- 삼각김밥 -->
    			<AddWorldItemElu name ="samgak01">
    				<AddBaseModel name ="samgak01" filename="model/weapon/item/medickit_samgak01.elu"/>
    			</AddWorldItemElu>	
    
    			<!-- 삼각김밥 -->
    			<AddWorldItemElu name ="chocobar">
    				<AddBaseModel name ="chocobar" filename="model/weapon/item/chocobar.elu"/>
    			</AddWorldItemElu>	
    
          <!-- 포탈 -->
    			<AddWorldItemElu name ="portal">
    				<AddBaseModel name ="portal" filename="model/worlditem/ef_portal.elu"/>
    				<AddAnimation name="play" filename="model/worlditem/ef_portal.elu.ani" motion_type="0" motion_loop_type="loop" />
    			</AddWorldItemElu>	
    
    			<!-- 아이템박스 -->
    			<AddWorldItemElu name ="itembox">
    				<AddBaseModel name ="itembox" filename="model/worlditem/ef_box.elu"/>
    				<AddAnimation name="play" filename="model/worlditem/ef_box_open.elu.ani" motion_type="0" motion_loop_type="lastframe" />
    				<AddAnimation name="playloop" filename="model/worlditem/ef_box_opened.elu.ani" motion_type="0" motion_loop_type="loop" />
    			</AddWorldItemElu>	
    						
    			<AddWorldItemElu name ="baseEffect">
    				<AddBaseModel name ="baseEffect" filename="model/worlditem/ef_prop.elu"/>
    				<AddAnimation name="play" filename="model/worlditem/ef_prop.elu.ani" motion_type="0" motion_loop_type="loop" />
    			</AddWorldItemElu>	
    		</MeshInfo>
    </XML>
    Use IT!

  3. #3
    Apprentice Orel1991 is offline
    MemberRank
    Aug 2009 Join Date
    6Posts

    Re: Cookies/Candy/Coke/Pizza/Traingle meds doesn't heal

    Thanks.

    But you gave me alot of codes.. i need just Cookies, Traingle, candy, pizza, and coke :X

  4. #4
    Enthusiast Black|Dragon is offline
    MemberRank
    Nov 2008 Join Date
    EspaLocation
    37Posts

    Re: Cookies/Candy/Coke/Pizza/Traingle meds doesn't heal

    so... edit it.. whit the codes that he give you men

  5. #5
    Apprentice Orel1991 is offline
    MemberRank
    Aug 2009 Join Date
    6Posts

    Re: Cookies/Candy/Coke/Pizza/Traingle meds doesn't heal

    Quote Originally Posted by Black|Dragon View Post
    so... edit it.. whit the codes that he give you men
    Listen, I edited it and meds still dont work..

    I edit (matchserver > worlditem.xml) file, still dont work

  6. #6
    Proficient Member taurias is offline
    MemberRank
    Dec 2008 Join Date
    178Posts

    Re: Cookies/Candy/Coke/Pizza/Traingle meds doesn't heal

    edit the ap or hp in the zitem.xml in system.mrs, search for the name of the item sing ctr f
    system.mrs is client sided btw.
    Last edited by taurias; 25-08-09 at 02:31 AM.

  7. #7
    Apprentice Orel1991 is offline
    MemberRank
    Aug 2009 Join Date
    6Posts

    Re: Cookies/Candy/Coke/Pizza/Traingle meds doesn't heal

    I don't understand..

    to edit the zitem.xml?

    But if ill edit for example the Cookie hp and ap, it will give hp and ap like a ring\set...

    I need it to heal!

    And I need to restart the server for it to work?

    Please explain urself

  8. #8
    Proficient Member taurias is offline
    MemberRank
    Dec 2008 Join Date
    178Posts

    Re: Cookies/Candy/Coke/Pizza/Traingle meds doesn't heal

    forget wat i said above... edit your worlditem.xml look for the name of the item u need to edit the hp and ap and edit it.

  9. #9
    Account Upgraded | Title Enabled! illxmike is offline
    MemberRank
    May 2008 Join Date
    NetherlandsLocation
    508Posts

    Re: Cookies/Candy/Coke/Pizza/Traingle meds doesn't heal

    Did you updated the filelist?

  10. #10
    Apprentice Orel1991 is offline
    MemberRank
    Aug 2009 Join Date
    6Posts

    Re: Cookies/Candy/Coke/Pizza/Traingle meds doesn't heal

    I tryed to update the filelist, I unpacked the system.mrs, change the sentences that I changed (worlditem, zitem) and I created a new system.mrs, I puted it in matchserver, and still dont work + I have agent error...

  11. #11
    Ā  Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: Cookies/Candy/Coke/Pizza/Traingle meds doesn't heal

    Use the newest models and XML Files. They started working for me :D

  12. #12
    Apprentice Orel1991 is offline
    MemberRank
    Aug 2009 Join Date
    6Posts

    Re: Cookies/Candy/Coke/Pizza/Traingle meds doesn't heal

    Quote Originally Posted by phoenix_147 View Post
    Use the newest models and XML Files. They started working for me :D
    I'm using the newest..

    GUYS IT'S STILL DON'T WORK

    Wtf I did wrong? :/



Advertisement