Jump to content
MakeWebGames

URBANZ

Members
  • Posts

    533
  • Joined

  • Last visited

  • Days Won

    48

Everything posted by URBANZ

  1. This script is GLv2 you can download it via GitHub or you can buy the premium version on the marketplace here.
  2. I think at this point should close this thread as you have been on since and still cant give us any solid proof. ontop of that you clearly have web experience when more that 50% of your website is images. (sarcasm if you didnt get that) was that also a free PSD. all elements on your website should be CSS and also responsive. just remove yourself as im guessing most people still remember you from BSM (Black Sheep Mafia) days just thought you might have grown up a bit and actually learned something in your 13+ years instead of trying to get people to buy into your bullshit. get back to your day job sure you are better at selling poultry than you are at web development.
  3. look at paypal ipn documentation and implement the new code, wouldnt take long to do.
  4. could you elaborate and backup this claim? like these models are turbo squid and like csgo background same as images used within your projects are all stock images. like same with question about rebel battles what exactly did you design in that game?
  5. i have seen the ones on homepage but these are not yours. do you have any genuine work of what you offer? https://www.turbosquid.com/3d-models/21-steam-locomotive-npc-3d-3ds/927898 https://www.turbosquid.com/3d-models/sculpt-knight-k3-series-3d-model/888971 https://wallpaperset.com/wallpaper/513289 https://stock.adobe.com/images/id/282792642?as_campaign=Freepik&as_content=api&as_audience=idp&tduid=1cb8081fd4d937398458e01c193fa816&as_channel=affiliate&as_campclass=redirect&as_source=arvato https://www.freepik.com/free-vector/mysterious-mafia-man-smoking-cigarette_7074311.htm#page=1&query=mafia&position=1 also rebel battles is listed on your website what did you design in this website as this was made by BlueTrendz http://www.bluetrendzdesigns.com/portfolio.php
  6. @ishmell i see you offer mascot creation have you got any example of your mascots?
  7. 1 thing so far ive seen that you need to change is this. very hard to read might be better having same color as body text but just make it bold also your mobile layout needs major rework i know its in beta but definitely would be a main thing i would concentrate on. also big thing is i noticed in your html/css you are using bootstrap classes etc but you are not using the bootstrap library you just seemed to have pasted a massive % of bootstrap into your css file, this doesnt make any sense to me as your css is huge especially for the games login pages next thing is sort your SSL out and redirects as when i post login i get this message. also ontop of all of that i just noticed why is the template based from Grpg templating and css, when you are using MCC. on top of that replace your <center> and <font> tags these were depreciated along time ago.
  8. its easy to do but main thing is details etc you need to post. just sometimes people dont have the time also exra details (free/paid) if you said if you was looking for it to be paid the budget you are willing to offer or if you just wished it to be a free module.
  9. normally this is caused by filezilla being configured for TLS you can change the encryption settings for connections in filezilla and should work. so change to use plain FTP connection. as sometimes can be a server configuration when FTP isnt set to explicit FTP over TLS Im sure dave could assist with this thats the main issue i would guess it is.
  10. main thing with svg is img tag wont work you need to use the correct formatting so it would be <image xlink:href="URL HERE" width="WIDTH" height="HEIGHT"/> you can also use clip-path="url(ELEMENT)" if you want it to clip to an element. if used correctly then you get result like below
  11. This has already been created by @AdamHull Note: as far as i know this was created before profile hooks existed so dont overwrite your profile page with it take the needed code and copy into your profile code, if you dont do this you might lose alot of functionality of GL profiles.
  12. what you expect these are 8 years old, if you are looking for module for Gangster Legends look in the module section for V2 and also you can make requests
  13. This a good option of you want to get rid of most spam, but still think about genuine players if they have just trying the game put they may not want to give you mobile numbers. If you do look at using this then FireBase is my preferences
  14. this will be free for everyone. it was made with the community in mind and the more people that have it will benefit the community more. Some updates. been optimising the core code and also chaging UI a bit. Added Ajax login with spinner to show login in progress Login panel spinner waiting for response for login Screen of user logged in (still WIP for the UI)
  15. yes RM days and upgrade, next week i will be listing my upgrade store on MWG (finally) and this includes this feature.
  16. yes i thought of this and module that are in bundles use your bundle installer and also any instructions that are included in the module (readme.txt, readme.MD) are outputted after install. if modules require purchase it directs to MWG to make the purchase then the module can then be installed via ACP
  17. So over the past couple days ive decided to build a marketplace that connects with MWG and fetches data to the ACP of the engine, massive reason behind the development of this module was to bring more exposure to MWG and postentially more sales for developers that have published modules within MWG. Features: Login with MWG account Allows direct downlaod/install to the game from ACP. Searching/sorting of modules (in Progress) Module images currently working on for lightbox slideshow Also when finished will be released for free. Note: This does not work with a MWG API this is connected to MWG in a different way.
  18. URBANZ

    JS get tr ID

    yes this is correct did you want it done in jQuery instead of vanilla?
  19. URBANZ

    JS get tr ID

    haha its all good it happens, sometime i do the same, so many ideas lol
  20. URBANZ

    JS get tr ID

    im guessing he would already be doing this as seems like a time tracking kind of system which would make more sense to have a mysql table and built the table with the data but also the question was more directed at the javascript functionality and not the PHP backend.
  21. URBANZ

    JS get tr ID

    <table id="game"> <tr id="8"> <th>08:00</th> <td colspan="4" rowspan="2" class="stage-saturn">Welcome</td> </tr> <tr id="830"> <th>08:30</th> </tr> <tr id="9"> <th>09:00</th> <td colspan="4" class="stage-earth">Speaker One <span>Earth Stage</span></td> </tr> <script type="text/javascript"> document.getElementById('game') .addEventListener('click', function (item) { var row = item.path[1]; alert(row.id); }); </script> something like that would do it
  22. there is alot of solutions in he free mods section that do this just use the search bar at the top. I wouldnt advise this though as so many people use VPN and sometimes the IP of the user will change depending if it is dynamic or not.
  23. URBANZ

    JS get tr ID

    <table id="game"> <tr id="8" onclick="myFunction(this)"> <th>08:00</th> <td colspan="4" rowspan="2" class="stage-saturn">Welcome</td> </tr> <tr id="830" onclick="myFunction(this)"> <th>08:30</th> </tr> <tr id="9" onclick="myFunction(this)"> <th>09:00</th> <td colspan="4" class="stage-earth">Speaker One <span>Earth Stage</span></td> </tr> <script> function myFunction(tr) { alert(tr.id); } </script> i would guess something like that
  24. The markup is incorrect add } before tr:nth-child(even) th { remove } before .stage-earth { remove the ; after all the .stage-*
×
×
  • Create New...