Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[DEV]Character Display v170+

Infraction Baɴɴed
Loyal Member
Joined
Apr 9, 2008
Messages
1,416
Reaction score
169
php everything is server side.
html5 still needs php to gather the ids and get the info inside the required files but then its formatted to json for html5/jQuery to display accordingly

php:
Code:
<img src="character.php?name={char}" height="96" width="96 />
html5:
Code:
<canvas id="{char}" class="{unified class}" height="96" width="96"></canvas>

for html5 at the end of the request i made it so you throw a script tag at the end and as long as the id is the char name and class is unique you just need that 1 request and it will display each character to the right canvas tag
 
Infraction Baɴɴed
Loyal Member
Joined
Apr 9, 2008
Messages
1,416
Reaction score
169
not hard to add just use ltrim({name}, {prefix}) and done
 
Back
Top