Jump to content

NOX

Advanced members
  • Content Count

    35
  • Joined

  • Last visited

  • Days Won

    7

Posts posted by NOX


  1. 5 minutes ago, mkhzaleh said:

    glows all client side, just add te effect on skilleff 
    image.png.338e1abe437f6547002d10658ef0825f.png

    then make sure that you have them inside sceneffectinfo

    Already fixed it bro but thx anyway :)

    The problem was that I was not finding the correct glow, but now I've copied the glows from the GOAT client

    • Like 1

  2.  

    The problem with vanilla servers is that we already have two big servers, so it's hard to compete with them, and a server focused on PK, loses the fun very quickly, I believe a server that was not focused only on PK and was not "hard" for being "strong" would be a better approach, but the problem is that some players today are already badly accustomed and want everything at hand, getting to the point of complaining about "Donate".

     

     

    Some admins use donate as a way to keep the server online (of course there are those who just want to steal your money), because if you put effort and time into something that will not bring you a return (be it financial or emotional) it's just time thrown away, and at the end no matter what style of server you will do, be it pk, be it farm, be it vanilla, will always have someone to complain, because you can't please everyone, but if you please some, stay with them , do the maintenance thinking about who wants the best to the server.

    • Like 1

  3. 1 hour ago, Edilson said:

    Can anyone help me to solve this problem that is happening with my Game Server?

    Error.jpg

     

    I once faced this problem, and it was a problem with the SQL Service Agent, which was not running.

    (maybe your problem might be another but it does not cost anything to do this post here)

     

    Check if all SQL services are running, check if you have configured GameServer.cfg correctly, in case you do not know if it is configured properly, post your GameServer.cfg here, so it will be easier for people to help you.


  4.  

     

    I agree with Adrian, in the part in which he says "... you will find those kind of people so hard", but I believe it is more for the lack of knowledge, and not for not wanting to help, because it is noticed that the Most website-related issues (such as FapFap posted) are solved with difficulties, as we do not have many people with php knowledge for help (I think, I may be wrong).

     

     

    But I myself have been helped here several times and have not even charged me :)


  5.  

    When Mermania Sea was closed, I started to get interested in a pirate server, so I started searching on the internet, found a few Brazilian communities on the subject, then met one who was not Portuguese (I can not remember the name anymore) at the time when the "Momo" made templates for pkoSite, later I found the ServerDev, and through it I got to know this forum here. 
    (Sorry for the awful English)

    • Like 1

  6. 36 minutes ago, Danny said:

    Hey, you need theese extensions, then add them to your php.ini and restart xampp. (theese dlls go to ext folder in php & use the 32 bit ones normally for xampp)
    https://github.com/Microsoft/msphpsql/releases download here, it should be windows 7.x , x beeing the version of php so lets say you use 7.2 it will be windows 72 zip. gl.

    Already have those extensions, but when try to connect to database give me the error:

    "Access denied for user 'tserver'@'localhost' (using password: YES)"
    Im searching for the fix rn

     

    Btw this error occurs only when I try to connect to the database inside SQL Server, when I try to connect to a database created in phpMyAdmin the connection is successful.


  7. Hi, @LuciferMorningStar

     

    If you are refering to the name thats show on the game client you need to edit your StringSet.bin, here goes a tutorial:

    1. Download the StringSet.bin decrypter/decompile in this link: https://pkodev.net/index.php?/topic/1713-stringsetbin-decrypterdecompiler/
        "In the topic have a tutorial about how to use this tool"

    2. After you have decompile your StringSet, open with Notepad++ or any other text editor you like and you will see something like this:

    559572070_Image1.png.90bb37f6fc0683d7e844a3166ccdb5bf.png

     

    3. Now search for "[77]"  or search for the line "78" (without the quotation marks)

    4. Change the texts thats is between the quotation marks:

    241521356_Image2.png.c934729ef74e9c7dd3d9e1a79c4a960e.png

     

    5. Save the file then use any compile to compile the StringSet.bin

    6. Replace the old StringSet.bin from your client with the new one

    • Like 2

  8. Hi, @V3ct0r 

    6 hours ago, V3ct0r said:

    Hello, @NOX!

     

    There are topCMS by @Perseus and Item Mall by @EZEQUIEL written using PHP7.

     

    Im gonna have a look on those 2 websites later to study then :) 

     

    6 hours ago, V3ct0r said:

    Yes, you can. You need change all removed from PHP7 mssql_*******() functions to PDO.

     

    This seems a lot of work to do.. xD

     

    One little question, i was trying to create a new one from the 0, using PDO, but fail miserably to connect to the database, the version of SQL Server interfers??(I'm not very familiar with SQLServer, I was using SQL Server 2000 btw)

     


  9. 5 hours ago, mkhzaleh said:

    u can use it like this
     

    
    local id = 855
    local coins = BagTempHasItem(role,id,1)
    if coins >= 1 then
    SystemNotice(role, "Please, remove [fairy Coin] from your inventory!")	
    return 0
    end

    but seems qty not work :) if u try to change 1 to 99 as example won't work

     

    Thanks mate, it served perfectly for what I was needing

    • Like 1

  10. I don't think you can make a npc seller for lv9 gems, you can make an exchanger instead

     

    function ExchangerGem()
      Talk( 1, "Level 9 Exchanger Gem NPC" )
      Text( 1, "Refining Gem", JumpPage, 3 )
      
      Talk( 2, "Sorry, you do not have the required Items. I cannot exchange it for you." )
      
      Talk( 3, "Do you want to exchange 256 Ref Voucher for a Lv 9 Ref Gem ?" )
      InitTrigger()
      TriggerCondition( 1, HasItem, 3877, 256 )  -- This one is using Ref Voucher but im sure you can trade to money if you want. "3877" is the item ID "256" is the qntd
      TriggerCondition( 1, HasLeaveBagGrid, 1 ) -- This checks if you have empty slots
      TriggerCondition( 1, KitbagLock, 0 )	-- This check if you dont have inv locked
      TriggerAction( 1, TakeItem, 3877, 256 )	-- This take the qntd of items
      TriggerAction( 1, GiveItem, 885,1,109 ) -- This gives your new gem. "885" Gem ID, "1" qntd, "109" Gem Level
      TriggerFailure( 1, JumpPage, 2) --If you don't have the requeriments items
      Text(3,"Exchange" ,MultiTrigger,GetMultiTrigger(),1) 
      
    end

    Study this function and make the other gems, its not hard im sure you can do :)

×
×
  • Create New...